summaryrefslogtreecommitdiffstats
path: root/kwordquiz/src/dlgrc.cpp
blob: 9fa996e31f1e478dcdbbf4c799c73fc5c8057588 (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
/***************************************************************************
                          dlglrc.cpp  -  description
                             -------------------
   copyright            : (C) 2003 by Peter Hedlund
   email                : peter.hedlund@kdemail.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include <klocale.h>
#include <krestrictedline.h>

#include "dlgrc.h"

DlgRC::DlgRC(TQWidget *parent, const char *name, bool modal): KDialogBase(Swallow, i18n("Rows & Columns"), Ok|Cancel, Ok, parent, name, modal, true)
{
  dlgBase = new DlgRCBase( this, "Dlg" );
  setMainWidget(dlgBase);
  dlgBase->txtNumRows->setFocus();
}


DlgRC::~DlgRC()
{
}

void DlgRC::setNumRows( int r )
{
  dlgBase->txtNumRows->setText(TQString::number(r, 10));
}

void DlgRC::setRowHeight( int h )
{
  dlgBase->txtRowHeight->setText(TQString::number(h, 10));
}

void DlgRC::setColWidth( int w )
{
  dlgBase->txtColWidth->setText(TQString::number(w, 10));
}

int DlgRC::numRows( )
{
  return dlgBase->txtNumRows->text().toInt();
}

int DlgRC::rowHeight( )
{
  return dlgBase->txtRowHeight->text().toInt();
}

int DlgRC::colWidth( )
{
  return dlgBase->txtColWidth->text().toInt();
}


#include "dlgrc.moc"