Subversion Repositories tpanel

Rev

Rev 120 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 120 Rev 122
Line 35... Line 35...
35
		~TQtSettings();
35
		~TQtSettings();
36
        bool hasChanged() { return mSetChanged; }
36
        bool hasChanged() { return mSetChanged; }
37
        void setScaleFactor(double sf) { mScaleFactor = sf; }
37
        void setScaleFactor(double sf) { mScaleFactor = sf; }
38
        void doResize();
38
        void doResize();
39
        uint getLogLevel() { return mLogLevel; }
39
        uint getLogLevel() { return mLogLevel; }
-
 
40
        bool downloadForce() { return mDownloadForce; }
40
 
41
 
41
    private slots:
42
    private slots:
42
        // Logging
43
        // Logging
43
        void on_kiconbutton_logFile_clicked();
44
        void on_kiconbutton_logFile_clicked();
44
        void on_lineEdit_logFile_textChanged(const QString &arg1);
45
        void on_lineEdit_logFile_textChanged(const QString &arg1);
Line 57... Line 58...
57
        void on_spinBox_Port_valueChanged(int arg1);
58
        void on_spinBox_Port_valueChanged(int arg1);
58
        void on_spinBox_Channel_valueChanged(int arg1);
59
        void on_spinBox_Channel_valueChanged(int arg1);
59
        void on_lineEdit_PType_textChanged(const QString &arg1);
60
        void on_lineEdit_PType_textChanged(const QString &arg1);
60
        void on_lineEdit_FTPuser_textChanged(const QString &arg1);
61
        void on_lineEdit_FTPuser_textChanged(const QString &arg1);
61
        void on_lineEdit_FTPpassword_textChanged(const QString &arg1);
62
        void on_lineEdit_FTPpassword_textChanged(const QString &arg1);
62
        void on_lineEdit_FTPsurface_textChanged(const QString &arg1);
63
        void on_comboBox_FTPsurface_currentIndexChanged(const QString &arg1);
-
 
64
        void on_toolButton_Download_clicked();
63
        void on_checkBox_FTPpassive_toggled(bool checked);
65
        void on_checkBox_FTPpassive_toggled(bool checked);
64
        // SIP
66
        // SIP
65
        void on_lineEdit_SIPproxy_textChanged(const QString &arg1);
67
        void on_lineEdit_SIPproxy_textChanged(const QString &arg1);
66
        void on_spinBox_SIPport_valueChanged(int arg1);
68
        void on_spinBox_SIPport_valueChanged(int arg1);
67
        void on_lineEdit_SIPstun_textChanged(const QString &arg1);
69
        void on_lineEdit_SIPstun_textChanged(const QString &arg1);
Line 85... Line 87...
85
        Ui::TQtSettings *ui{nullptr};
87
        Ui::TQtSettings *ui{nullptr};
86
        bool mSetChanged{false};
88
        bool mSetChanged{false};
87
        double mScaleFactor{1.0};
89
        double mScaleFactor{1.0};
88
        uint mLogLevel{0};
90
        uint mLogLevel{0};
89
        bool mInitRun{false};
91
        bool mInitRun{false};
-
 
92
        bool mDownloadForce{false};
90
};
93
};
91
 
94
 
92
#endif
95
#endif