]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/parageneraldlg.h
try this for distinguishing inner and outer tabs
[lyx.git] / src / frontends / kde / parageneraldlg.h
1 /**
2  * \file parageneraldlg.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #ifndef PARAGENERALDIALOG_H
10 #define PARAGENERALDIALOG_H
11
12 #include "dlg/parageneraldlgdata.h"
13 #include "dlg/paraabovedlgdata.h" 
14 #include "dlg/parabelowdlgdata.h"
15
16 class ParaDialog;
17
18 class ParaGeneralDialog : public ParaGeneralDialogData
19 {
20         Q_OBJECT
21
22 public:
23
24         ParaGeneralDialog(QWidget * parent = NULL, char const * name = NULL);
25
26         virtual ~ParaGeneralDialog();
27
28         friend class ParaDialog;
29      
30 protected slots:
31
32         void spaceaboveHighlighted(int);
33         void spacebelowHighlighted(int);
34
35 private:
36         ParaAboveDialogData * abovepage;
37         ParaBelowDialogData * belowpage;
38 };
39
40 #endif // PARAGENERALDIALOG_H