summaryrefslogtreecommitdiffstats
path: root/tdecore/tdeconfig_compiler/tests/test_dpointer.cpp.ref
blob: 5aad12fe884934575148842d616e10efc6698b41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
// This file is generated by tdeconfig_compiler from test_dpointer.kcfg.
// All changes you do to this file will be lost.

#include "test_dpointer.h"

#include <klocale.h>

#include <kstaticdeleter.h>

class TestDPointerPrivate
{
  public:

    // General
    bool autoSave;
    int autoSaveInterval;
    bool confirm;
    TQString archiveFile;
    int destination;

    // Views
    int hourSize;
    bool selectionStartsEditor;

    // KOrganizer Plugins
    TQStringList selectedPlugins;

    // Colors
    TQColor highlightColor;
    TQColor agendaBgColor;

    // Fonts
    TQFont timeBarFont;

    // items
    TDEConfigSkeleton::ItemBool *autoSaveItem;
    TDEConfigSkeleton::ItemInt *autoSaveIntervalItem;
    TDEConfigSkeleton::ItemBool *confirmItem;
    TDEConfigSkeleton::ItemString *archiveFileItem;
    TDEConfigSkeleton::ItemEnum *destinationItem;
    TDEConfigSkeleton::ItemInt *hourSizeItem;
    TDEConfigSkeleton::ItemBool *selectionStartsEditorItem;
    TDEConfigSkeleton::ItemStringList *selectedPluginsItem;
    TDEConfigSkeleton::ItemColor *highlightColorItem;
    TDEConfigSkeleton::ItemColor *agendaBgColorItem;
    TDEConfigSkeleton::ItemFont *timeBarFontItem;
};

TestDPointer *TestDPointer::mSelf = 0;
static KStaticDeleter<TestDPointer> staticTestDPointerDeleter;

TestDPointer *TestDPointer::self()
{
  if ( !mSelf ) {
    staticTestDPointerDeleter.setObject( mSelf, new TestDPointer() );
    mSelf->readConfig();
  }

  return mSelf;
}

TestDPointer::TestDPointer(  )
  : TDEConfigSkeleton( TQString::fromLatin1( "korganizerrc" ) )
{
  d = new TestDPointerPrivate;
  mSelf = this;
  setCurrentGroup( TQString::fromLatin1( "General" ) );

  d->autoSaveItem = new TDEConfigSkeleton::ItemBool( currentGroup(), TQString::fromLatin1( "Auto Save" ), d->autoSave, false );
  d->autoSaveItem->setLabel( i18n("Enable automatic saving of calendar") );
  d->autoSaveItem->setWhatsThis( i18n("WhatsThis text for AutoSave option") );
  addItem( d->autoSaveItem, TQString::fromLatin1( "AutoSave" ) );
  d->autoSaveIntervalItem = new TDEConfigSkeleton::ItemInt( currentGroup(), TQString::fromLatin1( "Auto Save Interval" ), d->autoSaveInterval, 10 );
  d->autoSaveIntervalItem->setLabel( i18n("Auto Save Interval") );
  addItem( d->autoSaveIntervalItem, TQString::fromLatin1( "AutoSaveInterval" ) );
  d->confirmItem = new TDEConfigSkeleton::ItemBool( currentGroup(), TQString::fromLatin1( "Confirm Deletes" ), d->confirm, true );
  d->confirmItem->setLabel( i18n("Confirm deletes") );
  addItem( d->confirmItem, TQString::fromLatin1( "Confirm" ) );
  d->archiveFileItem = new TDEConfigSkeleton::ItemString( currentGroup(), TQString::fromLatin1( "Archive File" ), d->archiveFile );
  d->archiveFileItem->setLabel( i18n("Archive File") );
  addItem( d->archiveFileItem, TQString::fromLatin1( "ArchiveFile" ) );
  TQValueList<TDEConfigSkeleton::ItemEnum::Choice> valuesDestination;
  {
    TDEConfigSkeleton::ItemEnum::Choice choice;
    choice.name = TQString::fromLatin1( "standardDestination" );
    valuesDestination.append( choice );
  }
  {
    TDEConfigSkeleton::ItemEnum::Choice choice;
    choice.name = TQString::fromLatin1( "askDestination" );
    valuesDestination.append( choice );
  }
  {
    TDEConfigSkeleton::ItemEnum::Choice choice;
    choice.name = TQString::fromLatin1( "argl1" );
    choice.label = i18n("Argl1 Label");
    valuesDestination.append( choice );
  }
  {
    TDEConfigSkeleton::ItemEnum::Choice choice;
    choice.name = TQString::fromLatin1( "argl2" );
    choice.whatsThis = i18n("Argl2 Whatsthis");
    valuesDestination.append( choice );
  }
  {
    TDEConfigSkeleton::ItemEnum::Choice choice;
    choice.name = TQString::fromLatin1( "argl3" );
    choice.label = i18n("Argl3 Label");
    choice.whatsThis = i18n("Argl3 Whatsthis");
    valuesDestination.append( choice );
  }
  d->destinationItem = new TDEConfigSkeleton::ItemEnum( currentGroup(), TQString::fromLatin1( "Destination" ), d->destination, valuesDestination, EnumDestination::standardDestination );
  d->destinationItem->setLabel( i18n("New Events/Todos Should") );
  addItem( d->destinationItem, TQString::fromLatin1( "Destination" ) );

  setCurrentGroup( TQString::fromLatin1( "Views" ) );

  d->hourSizeItem = new TDEConfigSkeleton::ItemInt( currentGroup(), TQString::fromLatin1( "Hour Size" ), d->hourSize, 10 );
  d->hourSizeItem->setLabel( i18n("Hour Size") );
  addItem( d->hourSizeItem, TQString::fromLatin1( "HourSize" ) );
  d->selectionStartsEditorItem = new TDEConfigSkeleton::ItemBool( currentGroup(), TQString::fromLatin1( "SelectionStartsEditor" ), d->selectionStartsEditor, false );
  d->selectionStartsEditorItem->setLabel( i18n("Time range selection in agenda view starts event editor") );
  addItem( d->selectionStartsEditorItem, TQString::fromLatin1( "SelectionStartsEditor" ) );

  setCurrentGroup( TQString::fromLatin1( "KOrganizer Plugins" ) );

  TQStringList defaultSelectedPlugins;
  defaultSelectedPlugins.append( TQString::fromUtf8( "holidays" ) );
  defaultSelectedPlugins.append( TQString::fromUtf8( "webexport" ) );

  d->selectedPluginsItem = new TDEConfigSkeleton::ItemStringList( currentGroup(), TQString::fromLatin1( "SelectedPlugins" ), d->selectedPlugins, defaultSelectedPlugins );
  d->selectedPluginsItem->setLabel( i18n("SelectedPlugins") );
  addItem( d->selectedPluginsItem, TQString::fromLatin1( "SelectedPlugins" ) );

  setCurrentGroup( TQString::fromLatin1( "Colors" ) );

  d->highlightColorItem = new TDEConfigSkeleton::ItemColor( currentGroup(), TQString::fromLatin1( "Highlight Color" ), d->highlightColor, TQColor( 100, 100, 255 ) );
  d->highlightColorItem->setLabel( i18n("Highlight color") );
  addItem( d->highlightColorItem, TQString::fromLatin1( "HighlightColor" ) );
  d->agendaBgColorItem = new TDEConfigSkeleton::ItemColor( currentGroup(), TQString::fromLatin1( "Agenda Background Color" ), d->agendaBgColor, TQColor( 255, 255, 255 ) );
  d->agendaBgColorItem->setLabel( i18n("Agenda view background color") );
  addItem( d->agendaBgColorItem, TQString::fromLatin1( "AgendaBgColor" ) );

  setCurrentGroup( TQString::fromLatin1( "Fonts" ) );

  d->timeBarFontItem = new TDEConfigSkeleton::ItemFont( currentGroup(), TQString::fromLatin1( "TimeBar Font" ), d->timeBarFont );
  d->timeBarFontItem->setLabel( i18n("Time bar") );
  addItem( d->timeBarFontItem, TQString::fromLatin1( "TimeBarFont" ) );
}

void TestDPointer::setAutoSave( bool v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "AutoSave" ) ))
        self()->d->autoSave = v;
}

bool TestDPointer::autoSave()
{
  return self()->d->autoSave;
}


TDEConfigSkeleton::ItemBool *TestDPointer::autoSaveItem()
{
  return d->autoSaveItem;
}

void TestDPointer::setAutoSaveInterval( int v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "AutoSaveInterval" ) ))
        self()->d->autoSaveInterval = v;
}

int TestDPointer::autoSaveInterval()
{
  return self()->d->autoSaveInterval;
}


TDEConfigSkeleton::ItemInt *TestDPointer::autoSaveIntervalItem()
{
  return d->autoSaveIntervalItem;
}

void TestDPointer::setConfirm( bool v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "Confirm" ) ))
        self()->d->confirm = v;
}

bool TestDPointer::confirm()
{
  return self()->d->confirm;
}


TDEConfigSkeleton::ItemBool *TestDPointer::confirmItem()
{
  return d->confirmItem;
}

void TestDPointer::setArchiveFile( const TQString & v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "ArchiveFile" ) ))
        self()->d->archiveFile = v;
}

TQString TestDPointer::archiveFile()
{
  return self()->d->archiveFile;
}


TDEConfigSkeleton::ItemString *TestDPointer::archiveFileItem()
{
  return d->archiveFileItem;
}

void TestDPointer::setDestination( int v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "Destination" ) ))
        self()->d->destination = v;
}

int TestDPointer::destination()
{
  return self()->d->destination;
}


TDEConfigSkeleton::ItemEnum *TestDPointer::destinationItem()
{
  return d->destinationItem;
}

void TestDPointer::setHourSize( int v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "HourSize" ) ))
        self()->d->hourSize = v;
}

int TestDPointer::hourSize()
{
  return self()->d->hourSize;
}


TDEConfigSkeleton::ItemInt *TestDPointer::hourSizeItem()
{
  return d->hourSizeItem;
}

void TestDPointer::setSelectionStartsEditor( bool v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "SelectionStartsEditor" ) ))
        self()->d->selectionStartsEditor = v;
}

bool TestDPointer::selectionStartsEditor()
{
  return self()->d->selectionStartsEditor;
}


TDEConfigSkeleton::ItemBool *TestDPointer::selectionStartsEditorItem()
{
  return d->selectionStartsEditorItem;
}

void TestDPointer::setSelectedPlugins( const TQStringList & v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "SelectedPlugins" ) ))
        self()->d->selectedPlugins = v;
}

TQStringList TestDPointer::selectedPlugins()
{
  return self()->d->selectedPlugins;
}


TDEConfigSkeleton::ItemStringList *TestDPointer::selectedPluginsItem()
{
  return d->selectedPluginsItem;
}

void TestDPointer::setHighlightColor( const TQColor & v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "HighlightColor" ) ))
        self()->d->highlightColor = v;
}

TQColor TestDPointer::highlightColor()
{
  return self()->d->highlightColor;
}


TDEConfigSkeleton::ItemColor *TestDPointer::highlightColorItem()
{
  return d->highlightColorItem;
}

void TestDPointer::setAgendaBgColor( const TQColor & v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "AgendaBgColor" ) ))
        self()->d->agendaBgColor = v;
}

TQColor TestDPointer::agendaBgColor()
{
  return self()->d->agendaBgColor;
}


TDEConfigSkeleton::ItemColor *TestDPointer::agendaBgColorItem()
{
  return d->agendaBgColorItem;
}

void TestDPointer::setTimeBarFont( const TQFont & v )
{
      if (!self()->isImmutable( TQString::fromLatin1( "TimeBarFont" ) ))
        self()->d->timeBarFont = v;
}

TQFont TestDPointer::timeBarFont()
{
  return self()->d->timeBarFont;
}


TDEConfigSkeleton::ItemFont *TestDPointer::timeBarFontItem()
{
  return d->timeBarFontItem;
}

TestDPointer::~TestDPointer()
{
  delete d;
  if ( mSelf == this )
    staticTestDPointerDeleter.setObject( mSelf, 0, false );
}