Home
last modified time | relevance | path

Searched refs:m_autoSaveInterval (Results 1 – 10 of 10) sorted by relevance

/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/configuration/
H A DGeneralConfigurationPage.cpp120 m_autoSaveInterval = new QComboBox(frame);
121 m_autoSaveInterval->addItem(tr("Every 30 seconds"));
122 m_autoSaveInterval->addItem(tr("Every minute"));
123 m_autoSaveInterval->addItem(tr("Every five minutes"));
124 m_autoSaveInterval->addItem(tr("Every half an hour"));
125 m_autoSaveInterval->addItem(tr("Never"));
131 m_autoSaveInterval->setCurrentIndex(4); // Never
142 connect(m_autoSaveInterval,
145 layout->addWidget(m_autoSaveInterval, row, 1, 1, 2);
482 if (m_autoSaveInterval->currentIndex() == 4) {
[all …]
H A DGeneralConfigurationPage.h104 QComboBox *m_autoSaveInterval;
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/
H A Deda_base_frame.cpp121 m_autoSaveInterval = -1; in BEGIN_EVENT_TABLE()
281 && m_autoSaveInterval > 0 ) in ProcessEvent()
286 m_autoSaveTimer->Start( m_autoSaveInterval * 1000, wxTIMER_ONE_SHOT ); in ProcessEvent()
303 m_autoSaveInterval = aInterval; in SetAutoSaveInterval()
307 if( m_autoSaveInterval > 0 ) in SetAutoSaveInterval()
309 m_autoSaveTimer->Start( m_autoSaveInterval * 1000, wxTIMER_ONE_SHOT ); in SetAutoSaveInterval()
323 m_autoSaveTimer->Start( m_autoSaveInterval * 1000, wxTIMER_ONE_SHOT ); in onAutoSaveTimer()
714 m_autoSaveInterval = Pgm().GetCommonSettings()->m_System.autosave_interval; in LoadWindowSettings()
758 Pgm().GetCommonSettings()->m_System.autosave_interval = m_autoSaveInterval; in SaveWindowSettings()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/include/
H A Deda_base_frame.h204 int GetAutoSaveInterval() const { return m_autoSaveInterval; } in GetAutoSaveInterval()
720 int m_autoSaveInterval; // The auto save interval time in seconds. variable
/dports/audio/lmms/lmms-1.2.2/include/
H A DMainWindow.h217 int m_autoSaveInterval; variable
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/samples/dialogs/
H A Ddialogs.h312 m_autoSaveInterval(1), in SettingsData()
321 int m_autoSaveInterval; member
H A Ddialogs.cpp3779 spinCtrl12->SetValidator(wxGenericValidator(&m_settingsData.m_autoSaveInterval)); in CreateGeneralSettingsPage()
/dports/net/messagelib/messagelib-21.12.3/messagecomposer/src/composer/
H A Dcomposerviewbase.cpp88 , m_autoSaveInterval(60000) // default of 1 min in ComposerViewBase()
1200 if (m_autoSaveInterval == 0) { in updateAutoSave()
1212 m_autoSaveTimer->start(m_autoSaveInterval); in updateAutoSave()
1290 if (m_autoSaveInterval > 0) { in slotAutoSaveComposeResult()
1780 m_autoSaveInterval = interval; in setAutoSaveInterval()
1808 return m_autoSaveInterval; in autoSaveInterval()
H A Dcomposerviewbase.h371 int m_autoSaveInterval; variable
/dports/audio/lmms/lmms-1.2.2/src/gui/
H A DMainWindow.cpp218 m_autoSaveInterval = ConfigManager::inst()->value( in MainWindow()