You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kile/src/kile/previewconfigwidget.h

69 lines
2.0 KiB

/***************************************************************************
date : Sep 05 2006
version : 0.32
copyright : (C) 2005-2006 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 PREVIEWCONFIGWIDGET_H
#define PREVIEWCONFIGWIDGET_H
#include "quickpreview.h"
#include <tqwidget.h>
#include <tqcheckbox.h>
#include <tqgroupbox.h>
#include <kcombobox.h>
#include <klineedit.h>
#include <tdeconfig.h>
/**
*@author Holger Danielsson
*/
class KileWidgetPreviewConfig : public TQWidget
{
TQ_OBJECT
public:
KileWidgetPreviewConfig(TDEConfig *config, KileTool::QuickPreview *preview, TQWidget *parent=0, const char *name=0);
~KileWidgetPreviewConfig() {}
void readConfig(void);
void writeConfig(void);
private:
TDEConfig *m_config;
KComboBox *m_combobox;
KileTool::QuickPreview *m_preview;
KLineEdit *m_leDvipngResolution;
TQLabel *m_lbDvipng, *m_lbConvert, *m_lbMathgroup;
TQCheckBox *m_cbEnvironment, *m_cbSelection, *m_cbMathgroup;
KComboBox *m_coSelection, *m_coEnvironment;
TQGroupBox *m_gbPreview;
bool m_dvipngInstalled, m_convertInstalled;
int tool2index(int tool);
int index2tool(int index);
int installedTools();
void setupSeparateWindow();
void setupBottomBar();
void setupProperties();
private slots:
void updateConversionTools();
};
#endif