summaryrefslogtreecommitdiffstats
path: root/src/kile/floatdialog.h
blob: a8a62c8b3cfa565328f1b4708de299af0f308219 (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
/***************************************************************************
    date                 : Jan 28 2005
    version              : 0.10
    copyright            : (C) 2005 by Holger Danielsson
    email                : holger.danielsson@t-online.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef FLOATDIALOG_H
#define FLOATDIALOG_H

#include "kilewizard.h"
#include <klineedit.h>

#include <tqlabel.h>
#include <tqcheckbox.h>
#include <tqradiobutton.h>

#include "kileinfo.h"

namespace KileDialog
{

class FloatEnvironmentDialog : public Wizard  
{
	TQ_OBJECT
  

public:
	FloatEnvironmentDialog(TDEConfig *config, KileInfo *ki, TQWidget *parent);
	~FloatEnvironmentDialog() {}
	
public slots:
	void slotOk();

private slots:
	void slotEnvironmentClicked();

private:
	KLineEdit *m_edLabel, *m_edCaption;
	TQRadioButton *m_rbFigure, *m_rbTable;
	TQCheckBox *m_cbHere,*m_cbTop,*m_cbBottom,*m_cbPage;
	TQCheckBox *m_cbCenter;
	
	TQString m_prefix;
	KileInfo *m_ki;
};

}

#endif