summaryrefslogtreecommitdiffstats
path: root/examples/demo/frame.cpp
blob: 1fed9f837597fd68e25bdeab24655fbd60a89504 (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
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA.  All rights reserved.
**
** This file is part of an example program for TQt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/

#include "frame.h"

#include <ntqapplication.h>
#include <ntqpopupmenu.h>
#include <ntqmenubar.h>
#include <ntqaccel.h>
#include <ntqtoolbox.h>
#include <ntqpainter.h>
#include <tqwidgetstack.h>
#include <ntqstylefactory.h>
#include <ntqaction.h>
#include <ntqsignalmapper.h>
#include <ntqdict.h>
#include <ntqdir.h>
#include <ntqtextcodec.h>
#include <stdlib.h>
#include <ntqbuttongroup.h>
#include <ntqtoolbutton.h>

static TQTranslator *translator = 0;
static TQTranslator *qt_translator = 0;

Frame::Frame( TQWidget *parent, const char *name )
    : TQMainWindow( parent, name )
{
    TQMenuBar *mainMenu = menuBar();
    TQPopupMenu *fileMenu = new TQPopupMenu( this, "file" );
    fileMenu->insertItem( tr( "&Exit" ), this, TQ_SLOT( close() ),
			  TQAccel::stringToKey( tr( "Ctrl+Q" ) ) );

    TQPopupMenu *styleMenu = new TQPopupMenu( this, "style" );
    styleMenu->setCheckable( TRUE );
    TQActionGroup *ag = new TQActionGroup( this, 0 );
    ag->setExclusive( TRUE );
    TQSignalMapper *styleMapper = new TQSignalMapper( this );
    connect( styleMapper, TQ_SIGNAL( mapped( const TQString& ) ),
	     this, TQ_SLOT( setStyle( const TQString& ) ) );

    TQStringList list = TQStyleFactory::keys();
    list.sort();
    TQDict<int> stylesDict( 17, FALSE );
    for ( TQStringList::Iterator it = list.begin(); it != list.end(); ++it ) {
	TQString style = *it;
	TQString styleAccel = style;
	if ( stylesDict[styleAccel.left(1)] ) {
	    for ( uint i = 0; i < styleAccel.length(); i++ ) {
		if ( !stylesDict[styleAccel.mid( i, 1 )] ) {
		    stylesDict.insert(styleAccel.mid( i, 1 ), (const int *)1);
		    styleAccel = styleAccel.insert( i, '&' );
		    break;
		}
	    }
	} else {
	    stylesDict.insert(styleAccel.left(1), (const int *)1);
	    styleAccel = "&"+styleAccel;
	}
	TQAction *a = new TQAction( style, TQIconSet(),
				  styleAccel, 0, ag, 0, ag->isExclusive() );
	connect( a, TQ_SIGNAL( activated() ), styleMapper, TQ_SLOT(map()) );
	styleMapper->setMapping( a, a->text() );
    }
    ag->addTo( styleMenu );

    mainMenu->insertItem( tr( "&File" ), fileMenu );
    mainMenu->insertItem( tr( "St&yle" ), styleMenu );

    stack = new TQWidgetStack( this );

    setCentralWidget( stack );
}

void Frame::setCategories( const TQPtrList<CategoryInterface> &l )
{
    categories = l;
    TQDockWindow *dw = new TQDockWindow( TQDockWindow::InDock, this );
    dw->setResizeEnabled( TRUE );
    dw->setVerticalStretchable( TRUE );
    addDockWindow( dw, DockLeft );
    setDockEnabled( dw, DockTop, FALSE );
    setDockEnabled( dw, DockBottom, FALSE );
    dw->setCloseMode( TQDockWindow::Always );

    toolBox = new TQToolBox( dw );
    dw->setWidget( toolBox );

    dw->setCaption( tr( "Demo Categories" ) );

    for ( int i = 0; i < categories.count(); ++i )
	toolBox->addItem( createCategoryPage( categories.at(i) ),
			  categories.at(i)->icon(),
			  categories.at(i)->name() );

    categories.first()->setCurrentCategory( 0 );
}

TQWidget *Frame::createCategoryPage( CategoryInterface *c )
{
    TQButtonGroup *g = new TQButtonGroup( 1, Horizontal, toolBox );
    g->setFrameStyle( TQFrame::NoFrame );
    g->setEraseColor(green);
    g->setBackgroundMode(PaletteBase);
    for ( int i = 0; i < c->numCategories(); ++i ) {
	TQToolButton *b = new TQToolButton( g );
	b->setBackgroundMode(PaletteBase);
	b->setTextLabel( c->categoryName( i ) );
	b->setIconSet( c->categoryIcon( i ) );
	b->setAutoRaise( TRUE );
	b->setTextPosition( TQToolButton::Right );
	b->setUsesTextLabel( TRUE );
	g->insert( b, i + c->categoryOffset() );
	connect( g, TQ_SIGNAL( clicked( int ) ), c, TQ_SLOT( setCurrentCategory( int ) ) );
    }
    return g;
}

void Frame::setStyle( const TQString& style )
{
    TQStyle *s = TQStyleFactory::create( style );
    if ( s )
	TQApplication::setStyle( s );
}

void Frame::updateTranslators()
{
    if ( !qt_translator ) {
	qt_translator = new TQTranslator( tqApp );
	translator = new TQTranslator( tqApp );
	tqApp->installTranslator( qt_translator );
	tqApp->installTranslator( translator );
    }

    TQString base = TQDir("../../translations").absPath();
    qt_translator->load( TQString( "qt_%1" ).arg( TQTextCodec::locale() ), base );
    translator->load( TQString( "translations/demo_%1" ).arg( TQTextCodec::locale() ) );
}

bool Frame::event( TQEvent *e )
{
    if ( e->type() == TQEvent::LocaleChange )
	updateTranslators();

    return TQMainWindow::event( e );
}