kicad/eeschema/dialogs
Dick Hollenbeck 2c67c3ff80 * KIWAY Milestone A): Make major modules into DLL/DSOs.
!   The initial testing of this commit should be done using a Debug build so that
    all the wxASSERT()s are enabled.  Also, be sure and keep enabled the
    USE_KIWAY_DLLs option.  The tree won't likely build without it.  Turning it
    off is senseless anyways.  If you want stable code, go back to a prior version,
    the one tagged with "stable".

*   Relocate all functionality out of the wxApp derivative into more finely
    targeted purposes:
    a) DLL/DSO specific
    b) PROJECT specific
    c) EXE or process specific
    d) configuration file specific data
    e) configuration file manipulations functions.

    All of this functionality was blended into an extremely large wxApp derivative
    and that was incompatible with the desire to support multiple concurrently
    loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
    An amazing amount of organization come from simply sorting each bit of
    functionality into the proper box.

*   Switch to wxConfigBase from wxConfig everywhere except instantiation.
*   Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
    PGM_SINGLE_TOP,
*   Remove "Return" prefix on many function names.
*   Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
*   Fix building boost for use in a DSO on linux.
*   Remove some of the assumptions in the CMakeLists.txt files that windows had
    to be the host platform when building windows binaries.
*   Reduce the number of wxStrings being constructed at program load time via
    static construction.
*   Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
    these functions are useful even when the wxConfigBase comes from another
    source, as is the case in the KICAD_MANAGER_FRAME.
*   Move the setting of the KIPRJMOD environment variable into class PROJECT,
    so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
*   Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
    its child wxFrames and wxDialogs now have a Kiway() member function which
    returns a KIWAY& that that window tree branch is in support of.  This is like
    wxWindows DNA in that child windows get this member with proper value at time
    of construction.
*   Anticipate some of the needs for milestones B) and C) and make code
    adjustments now in an effort to reduce work in those milestones.
*   No testing has been done for python scripting, since milestone C) has that
    being largely reworked and re-thought-out.
2014-03-19 19:42:08 -05:00
..
dialog_annotate.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_annotate_base.cpp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_annotate_base.fbp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_annotate_base.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_bom.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_bom_base.cpp Eeschema: Add dialog and utilities (help files ...) to create BOMs from generic netlist, using python scripts or xsltproc+style sheet. 2013-06-15 20:02:52 +02:00
dialog_bom_base.fbp Eeschema: Add dialog and utilities (help files ...) to create BOMs from generic netlist, using python scripts or xsltproc+style sheet. 2013-06-15 20:02:52 +02:00
dialog_bom_base.h Eeschema: Add dialog and utilities (help files ...) to create BOMs from generic netlist, using python scripts or xsltproc+style sheet. 2013-06-15 20:02:52 +02:00
dialog_bom_cfg.keywords Eeschema: add dialog and utilities to create BOMs from generic netlist 2013-06-14 16:59:52 +02:00
dialog_bom_help.html Eeschema: add dialog and utilities to create BOMs from generic netlist 2013-06-14 16:59:52 +02:00
dialog_color_config.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_color_config.h Make KiCad compile with minimal warnings against SVN HEAD of wxWidgets as of today. 2014-01-07 19:34:04 -06:00
dialog_edit_component_in_lib.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_edit_component_in_lib.h page layout: if the environment variable KICAD_WKSFILE points a S expr page layout descr, this descr is used instead of internal descr. Mainly for testing purposes. 2013-06-07 11:49:36 +02:00
dialog_edit_component_in_lib_base.cpp Fix some issues in modview, relative to few incorrect use of some wxAuiManager functions. 2014-01-19 14:12:57 +01:00
dialog_edit_component_in_lib_base.fbp Fix some issues in modview, relative to few incorrect use of some wxAuiManager functions. 2014-01-19 14:12:57 +01:00
dialog_edit_component_in_lib_base.h Fix some issues in modview, relative to few incorrect use of some wxAuiManager functions. 2014-01-19 14:12:57 +01:00
dialog_edit_component_in_schematic.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_edit_component_in_schematic_fbp.cpp Pcbnew: remove broken patch for" Bug #1255059". 2013-12-14 20:03:38 +01:00
dialog_edit_component_in_schematic_fbp.fbp Pcbnew: remove broken patch for" Bug #1255059". 2013-12-14 20:03:38 +01:00
dialog_edit_component_in_schematic_fbp.h Pcbnew: remove broken patch for" Bug #1255059". 2013-12-14 20:03:38 +01:00
dialog_edit_label.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_edit_label_base.cpp Eeschema bus label test bug fixes. (fixes lp:1209424) 2013-08-13 19:04:41 -04:00
dialog_edit_label_base.fbp Eeschema bus label test bug fixes. (fixes lp:1209424) 2013-08-13 19:04:41 -04:00
dialog_edit_label_base.h Eeschema bus label test bug fixes. (fixes lp:1209424) 2013-08-13 19:04:41 -04:00
dialog_edit_libentry_fields_in_lib.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_edit_libentry_fields_in_lib_base.cpp Better GITHUB class header documentation, better eeschema library field dialog stretching and title. 2013-11-27 14:06:41 -06:00
dialog_edit_libentry_fields_in_lib_base.fbp Better GITHUB class header documentation, better eeschema library field dialog stretching and title. 2013-11-27 14:06:41 -06:00
dialog_edit_libentry_fields_in_lib_base.h Better GITHUB class header documentation, better eeschema library field dialog stretching and title. 2013-11-27 14:06:41 -06:00
dialog_edit_one_field.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_edit_one_field.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_eeschema_config.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_eeschema_config_fbp.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_eeschema_config_fbp.fbp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_eeschema_config_fbp.h * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_eeschema_options.cpp Initial release of pl_editor, the page layout and title block editor. 2013-07-19 20:27:22 +02:00
dialog_eeschema_options.h Initial release of pl_editor, the page layout and title block editor. 2013-07-19 20:27:22 +02:00
dialog_eeschema_options_base.cpp Fix GOST compatibility. 2013-07-22 18:45:22 +02:00
dialog_eeschema_options_base.fbp Fix GOST compatibility. 2013-07-22 18:45:22 +02:00
dialog_eeschema_options_base.h Initial release of pl_editor, the page layout and title block editor. 2013-07-19 20:27:22 +02:00
dialog_erc.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_erc.h Fix compile errors when wx3.x is built with --enable-stl 2014-01-18 03:07:05 -06:00
dialog_erc_base.cpp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_erc_base.fbp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_erc_base.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_lib_edit_draw_item.cpp Libedit and Modedit: fix minor, but annoying issues when editing items 2012-07-17 17:29:29 +02:00
dialog_lib_edit_draw_item.fbp Eeschema multiple unit component nomenclature improvements (fixes 1226874). 2013-11-09 11:30:49 -05:00
dialog_lib_edit_draw_item.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_lib_edit_draw_item_base.cpp Eeschema multiple unit component nomenclature improvements (fixes 1226874). 2013-11-09 11:30:49 -05:00
dialog_lib_edit_draw_item_base.h Eeschema multiple unit component nomenclature improvements (fixes 1226874). 2013-11-09 11:30:49 -05:00
dialog_lib_edit_pin.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_lib_edit_pin.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_lib_edit_pin_base.cpp Eeschema multiple unit component nomenclature improvements (fixes 1226874). 2013-11-09 11:30:49 -05:00
dialog_lib_edit_pin_base.fbp Eeschema multiple unit component nomenclature improvements (fixes 1226874). 2013-11-09 11:30:49 -05:00
dialog_lib_edit_pin_base.h Minor fixes. Gerbview: fix a collision name for GetLayout method. 2013-06-27 21:12:01 +02:00
dialog_lib_edit_text.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_lib_edit_text.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_lib_edit_text_base.cpp Eeszchema: Minor fixes. 2013-11-19 17:27:13 +01:00
dialog_lib_edit_text_base.fbp Eeszchema: Minor fixes. 2013-11-19 17:27:13 +01:00
dialog_lib_edit_text_base.h Fix some minor issues 2013-11-18 18:52:18 +01:00
dialog_lib_new_component.cpp eeschema/dialogs/dialog_lib_new_component.cpp was not expanding part name field nor setting initial focus. 2013-12-07 22:46:25 -06:00
dialog_lib_new_component.fbp dialog perfection does not come easily. 2013-12-09 16:48:09 -06:00
dialog_lib_new_component.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_lib_new_component_base.cpp dialog perfection does not come easily. 2013-12-09 16:48:09 -06:00
dialog_lib_new_component_base.h eeschema/dialogs/dialog_lib_new_component.cpp was not expanding part name field nor setting initial focus. 2013-12-07 22:46:25 -06:00
dialog_libedit_dimensions.cpp switch to <> for includes from "" per conversation with Jean-Pierre and Wayne, adjust search paths 2012-01-22 22:33:36 -06:00
dialog_libedit_dimensions.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_libedit_dimensions_base.cpp More EESchema dialog file housekeeping and coding policy fixes. 2010-11-19 11:28:46 -05:00
dialog_libedit_dimensions_base.fbp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_libedit_dimensions_base.h More EESchema dialog file housekeeping and coding policy fixes. 2010-11-19 11:28:46 -05:00
dialog_netlist.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_netlist_base.cpp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_netlist_base.fbp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_netlist_base.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_plot_schematic.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_plot_schematic.h * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_plot_schematic_base.cpp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_plot_schematic_base.fbp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_plot_schematic_base.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_print_using_printer.cpp * KIWAY Milestone A): Make major modules into DLL/DSOs. 2014-03-19 19:42:08 -05:00
dialog_print_using_printer_base.cpp fix problem with eeschema print dialog showing up on missing monitor 2012-08-15 12:55:48 -05:00
dialog_print_using_printer_base.fbp fix problem with eeschema print dialog showing up on missing monitor 2012-08-15 12:55:48 -05:00
dialog_print_using_printer_base.h fix problem with eeschema print dialog showing up on missing monitor 2012-08-15 12:55:48 -05:00
dialog_sch_edit_sheet_pin.cpp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_sch_edit_sheet_pin.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_sch_edit_sheet_pin_base.cpp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_sch_edit_sheet_pin_base.fbp 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_sch_edit_sheet_pin_base.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
dialog_sch_find.fbp wxID_CANCEL, 5 pixel border around sizers, resizable search combobox, dialog_shim usage on a few dialogs 2013-02-22 07:47:35 -06:00
dialog_sch_sheet_props.cpp Eeschema: always stores sheet filename in unix-like notation, and fix a bug when editing sheet file name. 2012-10-13 20:54:33 +02:00
dialog_sch_sheet_props.fbp Pcbnew: remove broken patch for" Bug #1255059". 2013-12-14 20:03:38 +01:00
dialog_sch_sheet_props.h Pcbnew: remove broken patch for" Bug #1255059". 2013-12-14 20:03:38 +01:00
dialog_sch_sheet_props_base.cpp Pcbnew: remove broken patch for" Bug #1255059". 2013-12-14 20:03:38 +01:00
dialog_sch_sheet_props_base.h Pcbnew: remove broken patch for" Bug #1255059". 2013-12-14 20:03:38 +01:00
dialog_schematic_find.cpp All: added a standard exit dialog called by int DisplayExitDialog( wxWindow* aParent, const wxString& aMessage ) 2012-03-08 18:47:23 +01:00
dialog_schematic_find.h Eeschema find/replace bug fixes and improvements (fixes 1208616). 2013-10-27 14:21:53 -04:00
dialog_schematic_find_base.cpp wxID_CANCEL, 5 pixel border around sizers, resizable search combobox, dialog_shim usage on a few dialogs 2013-02-22 07:47:35 -06:00
dialog_schematic_find_base.h wxID_CANCEL, 5 pixel border around sizers, resizable search combobox, dialog_shim usage on a few dialogs 2013-02-22 07:47:35 -06:00