Settings saved with ok and cancel added to SettingsView.
[qtmeetings] / src / UserInterface / Views / SettingsView.h
index 3e04eee..c86e690 100644 (file)
@@ -30,14 +30,16 @@ public:
 signals:
        void okClicked();
        
+       void cancelClicked();
+       
 public slots:
-       void viewResized(const QSize &size);
+       void viewResized(const QSize &newSize, const QSize &oldSize);
 
 private slots:
        //! Slot to handle the Ok button pressing.
        void handleOkClicked();
-       //! Slot to handle the cancel button pressing.
-       void cancelClicked();
+       //! Slot to handle the Cancel button pressing.
+       void handleCancelClicked();
 
 private:
        //! Initialize "Settings" tab.
@@ -48,12 +50,14 @@ private:
        QWidget *initResourcesTab();
        //! Initialize "KIOSK Mode" tab.
        QWidget *initKioskModeTab();
+       //! Set values to fields
+       void setValues();
 
        //! The tabbed settings view component.
        QTabWidget *iTabWidget;
        //! OK button to dismiss the settings view with saving the settings.
        QPushButton *iOkButton;
-       //! Cancel button to dismiss the settings view without saving settings.
+       //! Cancel button to dismiss the settings view without saving the settings
        QPushButton *iCancelButton;
        //! Settings tab.
        QWidget *iSettingsTab;