25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
bibletime/bibletime/frontend/displaywindow/cbuttons.h

104 satır
2.5 KiB

/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2006 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
#ifndef CBUTTONS_H
#define CBUTTONS_H
//BibleTime includes
#include "backend/cswordbackend.h"
#include "backend/cswordmoduleinfo.h"
//QT includes
#include <tqdict.h>
//KDE includes
#include <ktoolbarbutton.h>
class TDEPopupMenu;
/** This class manages the transliteration of the selected modules.
* @author The BibleTime team
*/
// class CTransliterationButton : public TDEToolBarButton {
// Q_OBJECT
//
// public:
// CTransliterationButton(CSwordBackend::FilterOptions* displayOptions, TQWidget *parent, const char *name=0);
// ~CTransliterationButton();
// /**
// * Setup the menu entries.
// */
// void populateMenu();
// /**
// * Resets the buttons with the list of used modules.
// */
// void reset( ListCSwordModuleInfo& modules );
//
// protected slots: // Protected slots
// void optionSelected(int);
//
// private:
// TDEPopupMenu* m_popup;
// CSwordBackend::FilterOptions* m_filterOptions;
//
// signals:
// void sigChanged();
// };
/** This class manages the display options of the selected modules.
* @author The BibleTime team
*/
class CDisplaySettingsButton : public TDEToolBarButton {
Q_OBJECT
public:
CDisplaySettingsButton(CSwordBackend::DisplayOptions *displaySettings, CSwordBackend::FilterOptions *settings, const ListCSwordModuleInfo& useModules, TQWidget *parent=0, const char *name=0);
void reset(const ListCSwordModuleInfo& useModules);
/**
* Sets the item at position pos to the satet given as 2nd paramter.
*/
void setItemStatus( const int pos, const bool checked );
/**
* Returns the number of usable menu items in the setttings menu.
*/
const int menuItemCount();
/**
* Returns the status of the item at position "index"
*/
const bool itemStatus( const int index );
/**
* Sets the status to changed. The signal changed will be emitted.
*/
void setChanged();
signals:
void sigChanged(void);
protected slots:
void optionToggled(int ID);
protected:
CSwordBackend::FilterOptions* m_moduleSettings;
CSwordBackend::DisplayOptions* m_displaySettings;
CSwordBackend::FilterOptions m_available;
ListCSwordModuleInfo m_modules;
TQDict<int> m_dict;
TDEPopupMenu* m_popup;
int populateMenu();
bool isOptionAvailable( const CSwordModuleInfo::FilterTypes option);
int addMenuEntry( const TQString name, const int* option, const bool available);
};
#endif