]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/formprintdialog.C
Angus's FormInset work; Dekel's languages patch; my reworking of Angus's stuff +...
[lyx.git] / src / frontends / kde / formprintdialog.C
1 /*
2  * formprintdialog.C
3  * (C) 2000, LyX Team
4  * John Levon, moz@compsoc.man.ac.uk
5  */
6
7 #include "formprintdialogdata.h"
8 #include "formprintdialog.h"
9 #include "support/lstrings.h"
10
11 #include <kfiledialog.h>
12 #include <gettext.h>
13 #include <cstring>
14
15 #define Inherited FormPrintDialogData
16
17 FormPrintDialog::FormPrintDialog(FormPrint *f, QWidget* parent, const char * name)
18         : FormPrintDialogData(parent, name), form_(f)
19 {
20         setCaption(name); 
21 }
22
23 FormPrintDialog::~FormPrintDialog()
24 {
25 }
26
27 void FormPrintDialog::clickedBrowse()
28 {
29         // FIXME: open a file dialog here
30 }