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

73 lines
2.0 KiB

/***************************************************************************
userhelp.h
----------------------------------------------------------------------------
date : Aug 17 2006
version : 0.15
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 USERHELP_H
#define USERHELP_H
#include <tqwidget.h>
#include <tqpopupmenu.h>
#include <tqstringlist.h>
#include <tdemenubar.h>
#include <tdeconfig.h>
#include <tdelocale.h>
#include "kiletoolmanager.h"
namespace KileHelp
{
class UserHelp: public TQObject
{
TQ_OBJECT
public:
UserHelp(KileTool::Manager *manager, KMenuBar *menubar);
~UserHelp();
void userHelpDialog();
void enableUserHelpEntries(bool state);
private slots:
void slotUserHelpActivated(int index);
//void slotUserHelpDialog();
private:
void readConfig();
void writeConfig();
void setupUserHelpMenu();
void expandHelpMenu();
TQPopupMenu *getHelpPopup();
int getHelpIndex(TQPopupMenu *popup);
void updateEntries(const TQStringList &entries, const TQStringList &files, bool save = true);
KileTool::Manager *m_manager;
KMenuBar *m_menubar;
TQPopupMenu *m_helpmenu, *m_helppopup;
int m_helpid, m_sepid;
TQStringList m_menuentries, m_helpfiles;
};
}
#endif