pycrossword
0.4
Pure-Python implementation of a crossword puzzle generator and editor
|
Global app settings configuration window. More...
Public Member Functions | |
def | __init__ (self, mainwindow=None, parent=None, flags=QtCore.Qt.WindowFlags()) |
Constructor. More... | |
def | load_default_settings (self) |
Gets the default settings from 'defsettings.pxjson'. More... | |
def | addMainLayout (self) |
Creates the main (central) layout for controls. More... | |
def | add_pages (self) |
Creates config pages in SettingsDialog::stacked. More... | |
def | to_settings (self) |
Outputs collected settings in CWSettings.settings format and returns the resulting dictionary. More... | |
def | from_settings (self, settings=None, page=None) |
Updates the GUI controls from a dict of global settings. More... | |
def | addoredit_wordsrc (self, src, src_item=None) |
Adds a new word source from 'src' dict or assigns it to an existing item. More... | |
def | showEvent (self, event) |
Fires when the dialog is shown: updates controls from current settings. More... | |
def | on_tree_select (self) |
Fires when a config category is selected in the category tree. More... | |
def | on_btn_defaults (self, checked) |
Default button handler: Restores default settings for current page or all pages. More... | |
def | on_btn_load (self, checked) |
Load button handler: Loads settings from a file for current page or all pages. More... | |
def | on_btn_save (self, checked) |
Save button handler: Saves current settings to a file. More... | |
def | on_combo_log (self, index) |
When a log combo item is selected. More... | |
def | on_lw_sources_dblclick (self, item) |
When a word source is double-clicked, edit it. More... | |
def | on_chb_maxfetch_checked (self, state) |
When SettingsDialog::chb_maxfetch is checked or unchecked. More... | |
def | on_act_src_up (self, checked) |
Moves selected word source up one position. More... | |
def | on_act_src_down (self, checked) |
Moves selected word source down one position. More... | |
def | on_act_src_add (self, checked) |
Adds a new word source. More... | |
def | on_act_src_remove (self, checked) |
Deletes the selected word source. More... | |
def | on_act_src_edit (self, checked) |
Edits the selected word source. More... | |
def | on_act_src_clear (self, checked) |
Clears all current word sources. More... | |
def | on_act_src_manage (self, checked) |
Launches the DB Manager – WordDBManager. More... | |
def | on_act_cluecol_up (self, checked) |
Moves selected clues column up one position. More... | |
def | on_act_cluecol_down (self, checked) |
Moves selected clues column down one position. More... | |
def | on_color_btn_clicked (self, checked) |
Fires when any of the color select buttons is clicked. More... | |
def | on_font_btn_clicked (self, checked) |
Fires when any of the font select buttons is clicked. More... | |
def | on_chb_google_lang_all (self, state) |
Checks / unchecks all checkboxes for Google languages. More... | |
def | on_chb_google_interface_lang_all (self, state) |
Checks / unchecks all checkboxes for Google interface languages. More... | |
def | on_chb_google_geo_all (self, state) |
Checks / unchecks all checkboxes for Google locations. More... | |
def | on_lw_google_lang_changed (self, item) |
Sets the tristate for the ALL checkbox when a Google language is checked / unchecked. More... | |
def | on_lw_google_interface_lang_changed (self, item) |
Sets the tristate for the ALL checkbox when a Google interface language is checked / unchecked. More... | |
def | on_lw_google_geo_changed (self, item) |
Sets the tristate for the ALL checkbox when a Google location is checked / unchecked. More... | |
def | on_btn_export_auto_resolution_img (self) |
Sets the default resolution value ('Export' page). More... | |
def | on_btn_export_auto_resolution_pdf (self) |
Sets the default PDF resolution value ('Export' page). More... | |
def | on_act_register_associations (self, checked) |
Registers / unregisters file associations. More... | |
def | on_chb_system_proxy (self, state) |
Enables / disables proxy related controls when the checkbox is checked / unchecked. More... | |
def | on_model_plugins_3party_changed (self, item) |
Enables / disables a 3d-party plugin when checked / unchecked. More... | |
![]() | |
def | __init__ (self, geometry=None, title=None, icon=None, parent=None, flags=QtCore.Qt.WindowFlags(), sizepolicy=QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)) |
Constructor. More... | |
def | initUI (self, geometry=None, title=None, icon=None) |
Creates the core controls: OK and Cancel buttons and layouts. More... | |
def | validate (self) |
Validates user input (reimplemented in child classes). More... | |
def | on_btn_OK_clicked (self) |
Fires when the OK button is clicked. More... | |
def | on_btn_cancel_clicked (self) |
Fires when the Cancel button is clicked: rejects input and closes window. More... | |
Static Public Attributes | |
list | PAGES |
list of stacked pages corresponding to config categories More... | |
list | PARENT_PAGES = [_('Sources'), _('User interface'), _('Plugins')] |
list of parent nodes that hold several pages More... | |
Private Member Functions | |
def | _fill_clue_cols (self) |
Shortcut method to update the list of Clues column names. More... | |
def | _set_spin_value_safe (self, spin, val) |
Shortcut method to set the value of a QtWidgets.QSpinBox control with min/max threshold checks. More... | |
Global app settings configuration window.
def pycross.forms.SettingsDialog.__init__ | ( | self, | |
mainwindow = None , |
|||
parent = None , |
|||
flags = QtCore.Qt.WindowFlags() |
|||
) |
Constructor.
mainwindow | QtWidgets.QMainWindow pointer to gui::MainWindow instance |
parent | QtWidgets.QWidget parent widget (default = None , i.e. no parent) |
flags | QtCore.Qt.WindowFlags Qt window flags |
|
private |
Shortcut method to update the list of Clues column names.
|
private |
Shortcut method to set the value of a QtWidgets.QSpinBox control with min/max threshold checks.
def pycross.forms.SettingsDialog.add_pages | ( | self | ) |
Creates config pages in SettingsDialog::stacked.
def pycross.forms.SettingsDialog.addMainLayout | ( | self | ) |
Creates the main (central) layout for controls.
Must be overridden by child classes to change the layout type (default = QtWidgets.QFormLayout
) and add controls.
Reimplemented from pycross.forms.BasicDialog.
def pycross.forms.SettingsDialog.addoredit_wordsrc | ( | self, | |
src, | |||
src_item = None |
|||
) |
Adds a new word source from 'src' dict or assigns it to an existing item.
src | dict dictionary describing a word source; see dict format in WordSrcDialog docs |
src_item | QtWidgets.QListWidgetItem source item in SettingsDialog::lw_sources that must be updated; if None (default), a new source is added instead |
def pycross.forms.SettingsDialog.from_settings | ( | self, | |
settings = None , |
|||
page = None |
|||
) |
Updates the GUI controls from a dict of global settings.
settings | dict global setting dictionary in guisettings::CWSettings::settings format. If None (default), guisettings::CWSettings::settings is used (the app global settings). |
page | str name of page to update. GUI controls are updated only on this page. If None (default), GUI controls will be updated on all pages. |
def pycross.forms.SettingsDialog.load_default_settings | ( | self | ) |
Gets the default settings from 'defsettings.pxjson'.
dict
dictionary of settings loaded from the default settings file ('defsettings.pxjson'). def pycross.forms.SettingsDialog.on_act_cluecol_down | ( | self, | |
checked | |||
) |
Moves selected clues column down one position.
def pycross.forms.SettingsDialog.on_act_cluecol_up | ( | self, | |
checked | |||
) |
Moves selected clues column up one position.
def pycross.forms.SettingsDialog.on_act_register_associations | ( | self, | |
checked | |||
) |
Registers / unregisters file associations.
def pycross.forms.SettingsDialog.on_act_src_add | ( | self, | |
checked | |||
) |
Adds a new word source.
def pycross.forms.SettingsDialog.on_act_src_clear | ( | self, | |
checked | |||
) |
Clears all current word sources.
def pycross.forms.SettingsDialog.on_act_src_down | ( | self, | |
checked | |||
) |
Moves selected word source down one position.
def pycross.forms.SettingsDialog.on_act_src_edit | ( | self, | |
checked | |||
) |
Edits the selected word source.
def pycross.forms.SettingsDialog.on_act_src_manage | ( | self, | |
checked | |||
) |
Launches the DB Manager – WordDBManager.
def pycross.forms.SettingsDialog.on_act_src_remove | ( | self, | |
checked | |||
) |
Deletes the selected word source.
def pycross.forms.SettingsDialog.on_act_src_up | ( | self, | |
checked | |||
) |
Moves selected word source up one position.
def pycross.forms.SettingsDialog.on_btn_defaults | ( | self, | |
checked | |||
) |
Default button handler: Restores default settings for current page or all pages.
def pycross.forms.SettingsDialog.on_btn_export_auto_resolution_img | ( | self | ) |
Sets the default resolution value ('Export' page).
def pycross.forms.SettingsDialog.on_btn_export_auto_resolution_pdf | ( | self | ) |
Sets the default PDF resolution value ('Export' page).
def pycross.forms.SettingsDialog.on_btn_load | ( | self, | |
checked | |||
) |
Load button handler: Loads settings from a file for current page or all pages.
def pycross.forms.SettingsDialog.on_btn_save | ( | self, | |
checked | |||
) |
Save button handler: Saves current settings to a file.
def pycross.forms.SettingsDialog.on_chb_google_geo_all | ( | self, | |
state | |||
) |
Checks / unchecks all checkboxes for Google locations.
def pycross.forms.SettingsDialog.on_chb_google_interface_lang_all | ( | self, | |
state | |||
) |
Checks / unchecks all checkboxes for Google interface languages.
def pycross.forms.SettingsDialog.on_chb_google_lang_all | ( | self, | |
state | |||
) |
Checks / unchecks all checkboxes for Google languages.
def pycross.forms.SettingsDialog.on_chb_maxfetch_checked | ( | self, | |
state | |||
) |
When SettingsDialog::chb_maxfetch is checked or unchecked.
def pycross.forms.SettingsDialog.on_chb_system_proxy | ( | self, | |
state | |||
) |
Enables / disables proxy related controls when the checkbox is checked / unchecked.
def pycross.forms.SettingsDialog.on_color_btn_clicked | ( | self, | |
checked | |||
) |
Fires when any of the color select buttons is clicked.
def pycross.forms.SettingsDialog.on_combo_log | ( | self, | |
index | |||
) |
When a log combo item is selected.
def pycross.forms.SettingsDialog.on_font_btn_clicked | ( | self, | |
checked | |||
) |
Fires when any of the font select buttons is clicked.
def pycross.forms.SettingsDialog.on_lw_google_geo_changed | ( | self, | |
item | |||
) |
Sets the tristate for the ALL checkbox when a Google location is checked / unchecked.
def pycross.forms.SettingsDialog.on_lw_google_interface_lang_changed | ( | self, | |
item | |||
) |
Sets the tristate for the ALL checkbox when a Google interface language is checked / unchecked.
def pycross.forms.SettingsDialog.on_lw_google_lang_changed | ( | self, | |
item | |||
) |
Sets the tristate for the ALL checkbox when a Google language is checked / unchecked.
def pycross.forms.SettingsDialog.on_lw_sources_dblclick | ( | self, | |
item | |||
) |
When a word source is double-clicked, edit it.
def pycross.forms.SettingsDialog.on_model_plugins_3party_changed | ( | self, | |
item | |||
) |
Enables / disables a 3d-party plugin when checked / unchecked.
def pycross.forms.SettingsDialog.on_tree_select | ( | self | ) |
Fires when a config category is selected in the category tree.
def pycross.forms.SettingsDialog.showEvent | ( | self, | |
event | |||
) |
Fires when the dialog is shown: updates controls from current settings.
def pycross.forms.SettingsDialog.to_settings | ( | self | ) |
Outputs collected settings in CWSettings.settings format and returns the resulting dictionary.
dict
dictionary with global settings collected from the dialog pycross.forms.SettingsDialog.act_cluecol_down |
pycross.forms.SettingsDialog.act_cluecol_up |
pycross.forms.SettingsDialog.act_register_associations |
pycross.forms.SettingsDialog.act_src_add |
pycross.forms.SettingsDialog.act_src_clear |
pycross.forms.SettingsDialog.act_src_down |
pycross.forms.SettingsDialog.act_src_edit |
pycross.forms.SettingsDialog.act_src_manage |
pycross.forms.SettingsDialog.act_src_remove |
pycross.forms.SettingsDialog.act_src_up |
pycross.forms.SettingsDialog.btn_activecellcolor |
pycross.forms.SettingsDialog.btn_cell_blank_bg_color |
pycross.forms.SettingsDialog.btn_cell_filler2_bg_color |
pycross.forms.SettingsDialog.btn_cell_filler_bg_color |
pycross.forms.SettingsDialog.btn_cell_hilite_bg_color |
pycross.forms.SettingsDialog.btn_cell_hilite_fg_color |
pycross.forms.SettingsDialog.btn_cell_hilite_font |
pycross.forms.SettingsDialog.btn_cell_normal_bg_color |
pycross.forms.SettingsDialog.btn_cell_normal_fg_color |
pycross.forms.SettingsDialog.btn_cell_normal_font |
pycross.forms.SettingsDialog.btn_clue_complete_bg_color |
pycross.forms.SettingsDialog.btn_clue_complete_fg_color |
pycross.forms.SettingsDialog.btn_clue_incomplete_bg_color |
pycross.forms.SettingsDialog.btn_clue_incomplete_fg_color |
pycross.forms.SettingsDialog.btn_clue_normal_bg_color |
pycross.forms.SettingsDialog.btn_clue_normal_fg_color |
pycross.forms.SettingsDialog.btn_clue_normal_font |
pycross.forms.SettingsDialog.btn_clue_surrounding_color |
pycross.forms.SettingsDialog.btn_defaults |
pycross.forms.SettingsDialog.btn_export_auto_resolution_img |
pycross.forms.SettingsDialog.btn_export_auto_resolution_pdf |
pycross.forms.SettingsDialog.btn_gridlinecolor |
pycross.forms.SettingsDialog.btn_load |
pycross.forms.SettingsDialog.btn_numberscolor |
pycross.forms.SettingsDialog.btn_numbersfont |
pycross.forms.SettingsDialog.btn_print_clue_number_color |
pycross.forms.SettingsDialog.btn_print_clue_number_font |
pycross.forms.SettingsDialog.btn_print_clue_sizehint_color |
pycross.forms.SettingsDialog.btn_print_clue_sizehint_font |
pycross.forms.SettingsDialog.btn_print_clue_text_color |
pycross.forms.SettingsDialog.btn_print_clue_text_font |
pycross.forms.SettingsDialog.btn_print_header_color |
pycross.forms.SettingsDialog.btn_print_header_font |
pycross.forms.SettingsDialog.btn_print_info_color |
pycross.forms.SettingsDialog.btn_print_info_font |
pycross.forms.SettingsDialog.btn_register_associations |
pycross.forms.SettingsDialog.btn_save |
pycross.forms.SettingsDialog.central_widget |
pycross.forms.SettingsDialog.chb_autosave_cw |
pycross.forms.SettingsDialog.chb_dics_exact |
pycross.forms.SettingsDialog.chb_dics_show |
pycross.forms.SettingsDialog.chb_dics_showpos |
pycross.forms.SettingsDialog.chb_excl_regex |
pycross.forms.SettingsDialog.chb_export_clearcw |
pycross.forms.SettingsDialog.chb_export_openfile |
pycross.forms.SettingsDialog.chb_google_exact |
pycross.forms.SettingsDialog.chb_google_geo_all |
pycross.forms.SettingsDialog.chb_google_interface_lang_all |
pycross.forms.SettingsDialog.chb_google_lang_all |
pycross.forms.SettingsDialog.chb_google_safe |
pycross.forms.SettingsDialog.chb_google_show |
pycross.forms.SettingsDialog.chb_maxfetch |
pycross.forms.SettingsDialog.chb_print_antialias |
pycross.forms.SettingsDialog.chb_print_clear_cw |
pycross.forms.SettingsDialog.chb_print_color_print |
pycross.forms.SettingsDialog.chb_print_font_embed |
pycross.forms.SettingsDialog.chb_print_openfile |
pycross.forms.SettingsDialog.chb_print_print_clue_letters |
pycross.forms.SettingsDialog.chb_print_print_clues |
pycross.forms.SettingsDialog.chb_print_print_cw |
pycross.forms.SettingsDialog.chb_print_print_info |
pycross.forms.SettingsDialog.chb_sharing_use_api_key |
pycross.forms.SettingsDialog.chb_showcoords |
pycross.forms.SettingsDialog.chb_showgrid |
pycross.forms.SettingsDialog.chb_shownumbers |
pycross.forms.SettingsDialog.chb_system_proxy |
pycross.forms.SettingsDialog.chb_update_auto |
pycross.forms.SettingsDialog.chb_update_major_only |
pycross.forms.SettingsDialog.chb_update_restart |
pycross.forms.SettingsDialog.combo_apptheme |
pycross.forms.SettingsDialog.combo_cell_blank_style |
pycross.forms.SettingsDialog.combo_cell_filler2_style |
pycross.forms.SettingsDialog.combo_cell_filler_style |
pycross.forms.SettingsDialog.combo_cell_hilite_style |
pycross.forms.SettingsDialog.combo_cell_normal_style |
pycross.forms.SettingsDialog.combo_charcase |
pycross.forms.SettingsDialog.combo_clue_complete_style |
pycross.forms.SettingsDialog.combo_clue_incomplete_style |
pycross.forms.SettingsDialog.combo_clue_normal_alignment |
pycross.forms.SettingsDialog.combo_clue_normal_style |
pycross.forms.SettingsDialog.combo_gen_method |
pycross.forms.SettingsDialog.combo_gridlinestyle |
pycross.forms.SettingsDialog.combo_log |
pycross.forms.SettingsDialog.combo_lookup_deflang |
pycross.forms.SettingsDialog.combo_print_layout |
pycross.forms.SettingsDialog.combo_toolbarpos |
pycross.forms.SettingsDialog.default_settings |
pycross.forms.SettingsDialog.gb_clues_cols |
pycross.forms.SettingsDialog.gb_commonsettings |
pycross.forms.SettingsDialog.gb_dics |
pycross.forms.SettingsDialog.gb_excluded |
pycross.forms.SettingsDialog.gb_export |
pycross.forms.SettingsDialog.gb_google |
pycross.forms.SettingsDialog.gb_netsettings |
pycross.forms.SettingsDialog.gb_pos |
pycross.forms.SettingsDialog.gb_print_fonts |
pycross.forms.SettingsDialog.gb_print_margins |
pycross.forms.SettingsDialog.gb_src |
pycross.forms.SettingsDialog.gb_src_settings |
pycross.forms.SettingsDialog.layout_buttons |
pycross.forms.SettingsDialog.layout_central |
pycross.forms.SettingsDialog.layout_clues |
pycross.forms.SettingsDialog.layout_clues_all |
pycross.forms.SettingsDialog.layout_clues_wspacer1 |
pycross.forms.SettingsDialog.layout_clues_wspacer2 |
pycross.forms.SettingsDialog.layout_clues_wspacer3 |
pycross.forms.SettingsDialog.layout_clues_wspacer31 |
pycross.forms.SettingsDialog.layout_clues_wspacer4 |
pycross.forms.SettingsDialog.layout_combo_print_layout |
pycross.forms.SettingsDialog.layout_common |
pycross.forms.SettingsDialog.layout_controls |
pycross.forms.SettingsDialog.layout_export_resolution_img |
pycross.forms.SettingsDialog.layout_export_resolution_pdf |
pycross.forms.SettingsDialog.layout_gb_clues_cols |
pycross.forms.SettingsDialog.layout_gb_commonsettings |
pycross.forms.SettingsDialog.layout_gb_dics |
pycross.forms.SettingsDialog.layout_gb_excluded |
pycross.forms.SettingsDialog.layout_gb_export |
pycross.forms.SettingsDialog.layout_gb_google |
pycross.forms.SettingsDialog.layout_gb_netsettings |
pycross.forms.SettingsDialog.layout_gb_pos |
pycross.forms.SettingsDialog.layout_gb_print_fonts |
pycross.forms.SettingsDialog.layout_gb_print_margins |
pycross.forms.SettingsDialog.layout_gb_src |
pycross.forms.SettingsDialog.layout_generation |
pycross.forms.SettingsDialog.layout_grid |
pycross.forms.SettingsDialog.layout_importexport |
pycross.forms.SettingsDialog.layout_lookup |
pycross.forms.SettingsDialog.layout_lookup_top |
pycross.forms.SettingsDialog.layout_plugins_3party |
pycross.forms.SettingsDialog.layout_printing |
pycross.forms.SettingsDialog.layout_proxysettings |
pycross.forms.SettingsDialog.layout_proxysettings2 |
pycross.forms.SettingsDialog.layout_sharing |
pycross.forms.SettingsDialog.layout_src_mgmt |
pycross.forms.SettingsDialog.layout_src_rules |
pycross.forms.SettingsDialog.layout_src_settings |
pycross.forms.SettingsDialog.layout_updating |
pycross.forms.SettingsDialog.layout_window |
pycross.forms.SettingsDialog.layout_wspacer1 |
pycross.forms.SettingsDialog.layout_wspacer2 |
pycross.forms.SettingsDialog.layout_wspacer3 |
pycross.forms.SettingsDialog.layout_wspacer4 |
pycross.forms.SettingsDialog.layout_wspacer5 |
pycross.forms.SettingsDialog.layout_wspacer6 |
pycross.forms.SettingsDialog.le_dics_apikey_mw |
pycross.forms.SettingsDialog.le_dics_apikey_yandex |
pycross.forms.SettingsDialog.le_dics_badpos |
pycross.forms.SettingsDialog.le_google_apikey |
pycross.forms.SettingsDialog.le_google_cseid |
pycross.forms.SettingsDialog.le_google_filetypes |
pycross.forms.SettingsDialog.le_google_insite |
pycross.forms.SettingsDialog.le_google_linksite |
pycross.forms.SettingsDialog.le_google_relatedsite |
pycross.forms.SettingsDialog.le_http_proxy |
pycross.forms.SettingsDialog.le_https_proxy |
pycross.forms.SettingsDialog.le_print_clues_title |
pycross.forms.SettingsDialog.le_print_title |
pycross.forms.SettingsDialog.le_sharing_account |
pycross.forms.SettingsDialog.le_sharing_root |
pycross.forms.SettingsDialog.le_sharing_token |
pycross.forms.SettingsDialog.le_sharing_user |
pycross.forms.SettingsDialog.le_svg_description |
pycross.forms.SettingsDialog.le_svg_title |
pycross.forms.SettingsDialog.le_tempdir |
pycross.forms.SettingsDialog.le_update_logfile |
pycross.forms.SettingsDialog.lw_clues_cols |
pycross.forms.SettingsDialog.lw_google_geo |
pycross.forms.SettingsDialog.lw_google_interface_lang |
pycross.forms.SettingsDialog.lw_google_lang |
pycross.forms.SettingsDialog.lw_pos |
pycross.forms.SettingsDialog.lw_sources |
pycross.forms.SettingsDialog.mainwindow |
pycross.forms.SettingsDialog.model_plugins_3party |
pycross.forms.SettingsDialog.page_clues |
pycross.forms.SettingsDialog.page_common |
pycross.forms.SettingsDialog.page_generation |
pycross.forms.SettingsDialog.page_grid |
pycross.forms.SettingsDialog.page_importexport |
pycross.forms.SettingsDialog.page_lookup |
pycross.forms.SettingsDialog.page_plugins_3party |
pycross.forms.SettingsDialog.page_plugins_custom |
pycross.forms.SettingsDialog.page_printing |
pycross.forms.SettingsDialog.page_sharing |
pycross.forms.SettingsDialog.page_src_mgmt |
pycross.forms.SettingsDialog.page_src_rules |
pycross.forms.SettingsDialog.page_toolbar |
pycross.forms.SettingsDialog.page_updating |
pycross.forms.SettingsDialog.page_window |
|
static |
list of stacked pages corresponding to config categories
|
static |
list of parent nodes that hold several pages
pycross.forms.SettingsDialog.spin_cellsz |
pycross.forms.SettingsDialog.spin_cwscale |
pycross.forms.SettingsDialog.spin_export_cellsize |
pycross.forms.SettingsDialog.spin_export_quality |
pycross.forms.SettingsDialog.spin_export_resolution_img |
pycross.forms.SettingsDialog.spin_export_resolution_pdf |
pycross.forms.SettingsDialog.spin_gen_timeout |
pycross.forms.SettingsDialog.spin_google_nresults |
pycross.forms.SettingsDialog.spin_gridlinesz |
pycross.forms.SettingsDialog.spin_margin_bottom |
pycross.forms.SettingsDialog.spin_margin_left |
pycross.forms.SettingsDialog.spin_margin_right |
pycross.forms.SettingsDialog.spin_margin_top |
pycross.forms.SettingsDialog.spin_maxfetch |
pycross.forms.SettingsDialog.spin_req_timeout |
pycross.forms.SettingsDialog.spin_update_period |
pycross.forms.SettingsDialog.splitter1 |
pycross.forms.SettingsDialog.stacked |
QtWidgets.QStackedWidget
container for config pages for each category
pycross.forms.SettingsDialog.tb_clues_cols |
pycross.forms.SettingsDialog.tb_src_mgmt |
pycross.forms.SettingsDialog.te_excluded |
pycross.forms.SettingsDialog.tree |
QtWidgets.QTreeWidget
config categories tree
pycross.forms.SettingsDialog.tv_plugins_3party |
pycross.forms.SettingsDialog.widget_layout_clues |
pycross.forms.SettingsDialog.widget_layout_grid |
pycross.forms.SettingsDialog.widget_layout_lookup |
pycross.forms.SettingsDialog.widget_layout_printing |