klayout/TODO

52 lines
1.9 KiB
Plaintext
Raw Normal View History

2020-02-05 00:07:53 +01:00
Plan:
2020-02-08 00:02:49 +01:00
DONE 1. Combine AbstractMenuProvider, PluginRoot and the AbstractMenuProvider's
2020-02-05 00:07:53 +01:00
implementation in MainWindow/LayoutView into lay::Dispatcher
2020-02-08 00:02:49 +01:00
DONE 2. Base MainWindow and LayoutView on lay::Dispatcher
2020-02-05 00:07:53 +01:00
2020-02-08 00:02:49 +01:00
DONE 3. lay::Plugin::plugin_root -> lay::Dispatcher *lay::Plugin::dispatcher()
2020-02-05 00:07:53 +01:00
This method will find the MainWindow or LayoutView depending
which is the root.
2020-02-08 00:02:49 +01:00
DONE 4. Don't use AbstractMenuProvider::instance anymore, rather use lay::Dispatcher::instance
2020-02-05 00:07:53 +01:00
when necessary (should not be)
2020-02-08 00:02:49 +01:00
DONE 5. Instead of slots, bind abstract menu items to symbols passed to
2020-02-05 00:07:53 +01:00
Dispatcher::menu_activated
2020-02-08 00:02:49 +01:00
DONE 6. MainWindow will automatically dispatch menu_activated to LayoutView
2020-02-05 00:07:53 +01:00
2020-02-08 00:02:49 +01:00
DONE 7. GSI-expose menu_activated in LayoutView and MainWindow as "call_menu"
2020-02-05 00:07:53 +01:00
2020-02-08 00:02:49 +01:00
DONE 8. We can move menu initialization of LV-specifics to the LayoutView and
2020-02-05 00:07:53 +01:00
remove the cm_... and the code which just passes signals to the current view! :)
2020-02-05 00:09:20 +01:00
9. BTW: make QWidget::setParent and QObject::setParent transfer ownership for
Qt binding.
2020-02-05 00:10:40 +01:00
10. Provide the layer toolbox for GSI
2020-02-08 00:02:49 +01:00
11. Tests for new features and GSI tests
2020-02-10 23:13:35 +01:00
12. Default ctor for MainWindow so a pymod script can instantiate one (?)
2020-02-19 01:06:39 +01:00
DONE 13. Re-think concept of Action as "smart pointers": ConfigureAction
violates this. ConfigureAction should be ActionHandle variant?
Action as pointer and smart pointers for managing?
2020-02-07 18:46:35 +01:00
Tests:
2020-02-10 23:13:35 +01:00
- DONE: compare menu layout
- DONE: test every menu function
2020-02-07 18:46:35 +01:00
- adding of new tech
2020-02-10 23:13:35 +01:00
- DONE: adding of rulers/removing
2020-02-07 18:46:35 +01:00
- ruby plugin (debugging, re-running)
2020-02-10 23:13:35 +01:00
- DONE: changing of macro title, move macro to different place
- DONE: funktionieren die check marks vor den menus? (Mode, selection modes, ruler template)
- DONE: check whether there is a replacement for the "cm_..." methods and tests them (at least one)
- DONE: check if changing the default grid works
- Run unit tests -> klayout_main_tests:main is failing
2020-02-07 18:46:35 +01:00