]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/FormPrint.h
implement getLabelList
[lyx.git] / src / frontends / kde / FormPrint.h
1 /**
2  * \file FormPrint.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #ifndef FORMPRINT_H
10 #define FORMPRINT_H
11
12 #include "KFormBase.h"
13
14 class ControlPrint; 
15 class PrintDialog;
16
17 ///
18 class FormPrint : public KFormBase<ControlPrint, PrintDialog> {
19 public:
20         ///
21         FormPrint(ControlPrint & c);
22
23 private: 
24         /// apply dialog 
25         virtual void apply(); 
26         /// build dialog
27         virtual void build();
28         /// update dialog
29         virtual void update();
30 };
31
32 #endif // FORMPRINT_H