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/userhelpdialog.h

87 lines
2.4 KiB

/***************************************************************************
userhelpdialog.h
----------------------------------------------------------------------------
date : Jul 22 2005
version : 0.20
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 USERHELPDIALOG_H
#define USERHELPDIALOG_H
#include <qwidget.h>
#include <qstringlist.h>
#include <klistbox.h>
#include <klineedit.h>
#include <kpushbutton.h>
#include <kdialogbase.h>
namespace KileDialog
{
class UserHelpDialog : public KDialogBase
{
Q_OBJECT
public:
UserHelpDialog(QWidget *parent=0, const char *name=0);
~UserHelpDialog() {}
void setParameter(const QStringList &menuentries, const QStringList &helpfiles);
void getParameter(QStringList &userhelpmenulist, QStringList &userhelpfilelist);
private:
KListBox *m_menulistbox;
KLineEdit *m_fileedit;
KPushButton *m_add, *m_remove, *m_addsep, *m_up, *m_down;
QStringList m_filelist;
void updateButton();
private slots:
void slotChange(int index);
void slotAdd();
void slotRemove();
void slotAddSep();
void slotUp();
void slotDown();
};
class UserHelpAddDialog : public KDialogBase
{
Q_OBJECT
public:
UserHelpAddDialog(KListBox *menulistbox, QWidget *parent=0, const char *name=0);
~UserHelpAddDialog() {}
private:
KLineEdit *m_leMenuEntry, *m_leHelpFile;
KPushButton *m_pbChooseFile,*m_pbChooseHtml;
KListBox *m_menulistbox;
public:
QString getMenuitem() { return m_leMenuEntry->text(); }
QString getHelpfile() { return m_leHelpFile->text(); }
private slots:
void slotChooseFile();
void slotChooseHtml();
void slotOk();
};
}
#endif