summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/tagdialogs/tagquicklistdlgdata.cpp
blob: 44d461c4260665bea9b0a679ee5113c73b46d6e0 (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
/**********************************************************************
            --- KDevelop (KDlgEdit)  generated file ---

            Last generated: Tue Dec 7 16:51:35 1999

            DO NOT EDIT!!!  This file will be automatically
            regenerated by KDevelop.  All changes will be lost.

**********************************************************************/
#include <tdeapplication.h>
#include <klocale.h>
#include <tqbuttongroup.h>
#include "tagquicklistdlg.h"
#include <tqspinbox.h>
#include <tqlabel.h>
#include <kpushbutton.h>
#include <tqradiobutton.h>
#include <kstdguiitem.h>

void  TagQuickListDlg::initDialog()
{
  resize(230,150);

  TQLabel_1= new TQLabel(this,"NoName");
  TQLabel_1->setGeometry(10,10,100,30);
  TQLabel_1->setMinimumSize(0,0);
  TQLabel_1->setText(i18n("Rows:"));

  spinBoxRows= new TQSpinBox(this,"NoName");
  spinBoxRows->setGeometry(120,10,100,25);
  spinBoxRows->setMinimumSize(0,0);
  spinBoxRows->setRange(1,99);

  buttonOk= new KPushButton(KStdGuiItem::ok(),this,"NoName");
  buttonOk->setGeometry(10,110,100,30);
  buttonOk->setMinimumSize(0,0);

  TQLabel_2= new TQLabel(this,"NoName");
  TQLabel_2->setGeometry(10,40,100,30);
  TQLabel_2->setMinimumSize(0,0);
  TQLabel_2->setText(i18n("Style:"));

  buttonCancel= new TQPushButton(this,"NoName");
  buttonCancel->setGeometry(120,110,100,30);
  buttonCancel->setMinimumSize(0,0);
  buttonCancel->setText(KStdGuiItem::cancel().text());

  groupBox= new TQButtonGroup(this,"NoName");
  groupBox->setGeometry(120,40,100,60);
  groupBox->setMinimumSize(0,0);

  radioOrdered= new TQRadioButton(groupBox,"NoName");
  radioOrdered->setGeometry(5,5,90,25);
  radioOrdered->setMinimumSize(0,0);
  radioOrdered->setText(i18n("Ordered"));
  radioOrdered->setChecked(true);

  radioUnordered= new TQRadioButton(groupBox,"NoName");
  radioUnordered->setGeometry(5,30,90,25);
  radioUnordered->setMinimumSize(0,0);
  radioUnordered->setText(i18n("Unordered"));
  radioUnordered->setChecked(false);
}