blob: a9b3cdf9705d89467f33a897fe9bd79d400593bf (
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
|
// Copyright (c) 2003,2004 Charles Samuels <charles@kde.org>
// See the file COPYING for redistribution terms.
#ifndef VIEW_H
#define VIEW_H
#include <tdemainwindow.h>
#include <tdeaction.h>
#include <klineedit.h>
#include "tree.h"
class SchemaListAction;
class TabWidget;
class View : public TDEMainWindow
{
Q_OBJECT
Oblique *mOblique;
Tree *mTree;
TQValueList<Tree*> mTrees;
TabWidget *mTabs;
TDEAction *mRemoveTabAction;
SchemaListAction *mSchemaListAction;
public:
View(Oblique *oblique);
~View();
Tree *tree() { return mTree; }
Oblique *oblique() { return mOblique; }
public slots:
void addFiles();
void addDirectory();
void addTab();
void removeTab();
signals:
void listHidden();
void listShown();
private slots:
void configureToolBars();
void newToolBarConfig();
void jumpTextChanged(const TQString &text);
void use(Slice*);
void currentTabChanged(TQWidget *);
void setSchema(const TQString &file);
protected:
virtual void showEvent(TQShowEvent *) { emit listShown(); }
virtual void hideEvent(TQHideEvent *) { emit listHidden(); }
void closeEvent(TQCloseEvent*);
};
class LineEditAction : public KWidgetAction
{
Q_OBJECT
public:
LineEditAction(const TQString &text, const TQObject *reciever, const char *slot, TDEActionCollection *parent, const char *name);
KLineEdit *widget() { return static_cast<KLineEdit*>(KWidgetAction::widget()); }
KLineEdit *lineEdit() { return widget(); }
};
#endif
|