summaryrefslogtreecommitdiffstats
path: root/parts/filecreate/addglobaldlg.cpp
blob: 90897630c5d179e7a118e630bd682ccd367b99d0 (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
#include <klocale.h>
/****************************************************************************
** Form implementation generated from reading ui file './addglobaldlg.ui'
**
** Created: Сбт Лют 8 20:51:03 2003
**      by: The User Interface Compiler ($Id$)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/

#include "addglobaldlg.h"

#include <tqvariant.h>
#include <tqheader.h>
#include <tqlistview.h>
#include <tqpushbutton.h>
#include <tqlayout.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>

#include <klocale.h>

/*
 *  Constructs a AddGlobalDlg as a child of 'parent', with the
 *  name 'name' and widget flags set to 'f'.
 *
 *  The dialog will by default be modeless, unless you set 'modal' to
 *  TRUE to construct a modal dialog.
 */
AddGlobalDlg::AddGlobalDlg( TQWidget* parent, const char* name, bool modal, WFlags fl )
    : TQDialog( parent, name, modal, fl )

{
    if ( !name )
	setName( "AddGlobalDlg" );
    setSizeGripEnabled( TRUE );
    AddGlobalDlgLayout = new TQGridLayout( this, 1, 1, 11, 6, "AddGlobalDlgLayout");

    Layout1 = new TQHBoxLayout( 0, 0, 6, "Layout1");

    buttonHelp = new KPushButton( this, "buttonHelp" );
    buttonHelp->setAutoDefault( TRUE );
    Layout1->addWidget( buttonHelp );
    TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum );
    Layout1->addItem( spacer );

    buttonOk = new KPushButton( this, "buttonOk" );
    buttonOk->setAutoDefault( TRUE );
    buttonOk->setDefault( TRUE );
    Layout1->addWidget( buttonOk );

    buttonCancel = new KPushButton( this, "buttonCancel" );
    buttonCancel->setAutoDefault( TRUE );
    Layout1->addWidget( buttonCancel );

    AddGlobalDlgLayout->addLayout( Layout1, 1, 0 );

    fcglobal_view = new TQListView( this, "fcglobal_view" );
    fcglobal_view->addColumn( i18n( "Type Extension" ) );
    fcglobal_view->addColumn( i18n( "Type Name" ) );
    fcglobal_view->addColumn( i18n( "Template Location" ) );
    fcglobal_view->addColumn( i18n( "Icon" ) );
    fcglobal_view->addColumn( i18n( "Description" ) );
    fcglobal_view->setResizePolicy( TQListView::AutoOne );
    fcglobal_view->setAllColumnsShowFocus( TRUE );
    fcglobal_view->setRootIsDecorated( TRUE );
    fcglobal_view->setResizeMode( TQListView::AllColumns );

    AddGlobalDlgLayout->addWidget( fcglobal_view, 0, 0 );
    languageChange();
    resize( TQSize(511, 282).expandedTo(minimumSizeHint()) );

    // signals and slots connections
    connect( buttonOk, TQT_SIGNAL( clicked() ), this, TQT_SLOT( accept() ) );
    connect( buttonCancel, TQT_SIGNAL( clicked() ), this, TQT_SLOT( reject() ) );
}

/*
 *  Destroys the object and frees any allocated resources
 */
AddGlobalDlg::~AddGlobalDlg()
{
    // no need to delete child widgets, TQt does it all for us
}

/*
 *  Sets the strings of the subwidgets using the current
 *  language.
 */
void AddGlobalDlg::languageChange()
{
    setCaption( i18n( "Select Global File Types" ) );
    buttonHelp->setGuiItem( KStdGuiItem::help() );
    buttonHelp->setAccel( TQKeySequence( tr2i18n( "F1" ) ) );
    buttonOk->setGuiItem( KStdGuiItem::ok() );
    buttonOk->setAccel( TQKeySequence( TQString() ) );
    buttonCancel->setGuiItem( KStdGuiItem::cancel() );
    buttonCancel->setAccel( TQKeySequence( TQString() ) );
    fcglobal_view->header()->setLabel( 0, i18n( "Type extension:" ) );
    fcglobal_view->header()->setLabel( 1, i18n( "Type name:" ) );
    fcglobal_view->header()->setLabel( 2, i18n( "Template location:" ) );
    fcglobal_view->header()->setLabel( 3, i18n( "Icon:" ) );
    fcglobal_view->header()->setLabel( 4, i18n( "Description:" ) );
}

#include "addglobaldlg.moc"