diff options
Diffstat (limited to 'autotests/kconfig_compiler/test_dpointer.h.ref')
| -rw-r--r-- | autotests/kconfig_compiler/test_dpointer.h.ref | 220 | 
1 files changed, 220 insertions, 0 deletions
| diff --git a/autotests/kconfig_compiler/test_dpointer.h.ref b/autotests/kconfig_compiler/test_dpointer.h.ref new file mode 100644 index 00000000..e10c8c7c --- /dev/null +++ b/autotests/kconfig_compiler/test_dpointer.h.ref @@ -0,0 +1,220 @@ +// This file is generated by kconfig_compiler from test_dpointer.kcfg. +// All changes you do to this file will be lost. +#ifndef TESTDPOINTER_H +#define TESTDPOINTER_H + +#include <kconfigskeleton.h> +#include <QCoreApplication> +#include <QDebug> + +class TestDPointerPrivate; + +class TestDPointer : public KConfigSkeleton +{ +  public: +    class EnumDestination +    { +      public: +      enum type { standardDestination, askDestination, argl1, argl2, argl3, COUNT }; +    }; + +    static TestDPointer *self(); +    ~TestDPointer(); + +    /** +      Set Enable automatic saving of calendar +    */ +    static +    void setAutoSave( bool v ); + +    /** +      Get Enable automatic saving of calendar +    */ +    static +    bool autoSave(); + +    /** +      Get Item object corresponding to AutoSave() +    */ +    ItemBool *autoSaveItem(); + +    /** +      Set Auto Save Interval +    */ +    static +    void setAutoSaveInterval( int v ); + +    /** +      Get Auto Save Interval +    */ +    static +    int autoSaveInterval(); + +    /** +      Get Item object corresponding to AutoSaveInterval() +    */ +    ItemInt *autoSaveIntervalItem(); + +    /** +      Set Confirm deletes +    */ +    static +    void setConfirm( bool v ); + +    /** +      Get Confirm deletes +    */ +    static +    bool confirm(); + +    /** +      Get Item object corresponding to Confirm() +    */ +    ItemBool *confirmItem(); + +    /** +      Set Archive File +    */ +    static +    void setArchiveFile( const QString & v ); + +    /** +      Get Archive File +    */ +    static +    QString archiveFile(); + +    /** +      Get Item object corresponding to ArchiveFile() +    */ +    ItemString *archiveFileItem(); + +    /** +      Set New Events/Todos Should +    */ +    static +    void setDestination( int v ); + +    /** +      Get New Events/Todos Should +    */ +    static +    int destination(); + +    /** +      Get Item object corresponding to Destination() +    */ +    ItemEnum *destinationItem(); + +    /** +      Set Hour Size +    */ +    static +    void setHourSize( int v ); + +    /** +      Get Hour Size +    */ +    static +    int hourSize(); + +    /** +      Get Item object corresponding to HourSize() +    */ +    ItemInt *hourSizeItem(); + +    /** +      Set Time range selection in agenda view starts event editor +    */ +    static +    void setSelectionStartsEditor( bool v ); + +    /** +      Get Time range selection in agenda view starts event editor +    */ +    static +    bool selectionStartsEditor(); + +    /** +      Get Item object corresponding to SelectionStartsEditor() +    */ +    ItemBool *selectionStartsEditorItem(); + +    /** +      Set SelectedPlugins +    */ +    static +    void setSelectedPlugins( const QStringList & v ); + +    /** +      Get SelectedPlugins +    */ +    static +    QStringList selectedPlugins(); + +    /** +      Get Item object corresponding to SelectedPlugins() +    */ +    ItemStringList *selectedPluginsItem(); + +    /** +      Set Highlight color +    */ +    static +    void setHighlightColor( const QColor & v ); + +    /** +      Get Highlight color +    */ +    static +    QColor highlightColor(); + +    /** +      Get Item object corresponding to HighlightColor() +    */ +    ItemColor *highlightColorItem(); + +    /** +      Set Agenda view background color +    */ +    static +    void setAgendaBgColor( const QColor & v ); + +    /** +      Get Agenda view background color +    */ +    static +    QColor agendaBgColor(); + +    /** +      Get Item object corresponding to AgendaBgColor() +    */ +    ItemColor *agendaBgColorItem(); + +    /** +      Set Time bar +    */ +    static +    void setTimeBarFont( const QFont & v ); + +    /** +      Get Time bar +    */ +    static +    QFont timeBarFont(); + +    /** +      Get Item object corresponding to TimeBarFont() +    */ +    ItemFont *timeBarFontItem(); + +  protected: +    TestDPointer(); +    friend class TestDPointerHelper; + +  private: +    TestDPointerPrivate *d; +}; + +#endif + | 
