Subversion Repositories tpanel

Rev

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

Rev 242 Rev 247
Line 18... Line 18...
18
 
18
 
19
#ifndef QASETTINGS_H
19
#ifndef QASETTINGS_H
20
#define QASETTINGS_H
20
#define QASETTINGS_H
21
 
21
 
22
class QString;
22
class QString;
-
 
23
class QRect;
23
 
24
 
24
class QASettings
25
class QASettings
25
{
26
{
26
    public:
27
    public:
27
        // register default preferences from plist file
28
        // register default preferences from plist file
Line 76... Line 77...
76
        QString getLoggingLogfile(void);
77
        QString getLoggingLogfile(void);
77
 
78
 
78
        // Some static methods
79
        // Some static methods
79
        static QString getLibraryPath(void);
80
        static QString getLibraryPath(void);
80
        static QString getDocumentPath(void);
81
        static QString getDocumentPath(void);
-
 
82
        static QRect getNotchSize();
81
 
83
 
82
    private:        /// methods
84
    private:        /// methods
83
 
85
 
84
};
86
};
85
 
87