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.
bibletime/bibletime/frontend/searchdialog/csearchresultview.h

114 lines
2.1 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 CSEARCHRESULTSVIEW_H
#define CSEARCHRESULTSVIEW_H
//BibleTime includes
#include "backend/cswordmoduleinfo.h"
//TDE includes
#include <tdelistview.h>
//forward declarations
class TQLabel;
class TQCheckBox;
class TQPushButton;
class TQRadioButton;
class KComboBox;
class TDEActionMenu;
class TDEAction;
class KHistoryCombo;
class KProgress;
class TDEPopupMenu;
class CReadDisplay;
namespace Search {
namespace Result {
class CSearchResultView : public TDEListView {
TQ_OBJECT
public:
CSearchResultView(TQWidget* parent, const char* name = 0);
virtual ~CSearchResultView();
/** Returns the module which is currently used. */
CSwordModuleInfo* const module();
protected: // Protected methods
/**
* Initializes the view of this widget.
*/
void initView();
void initConnections();
virtual TQDragObject* dragObject();
public slots: // Public slots
void saveItems();
/**
* Setups the list with the given module.
*/
void setupTree(CSwordModuleInfo*);
void setupStrongsTree(CSwordModuleInfo*, TQStringList*);
void copyItemsWithText();
void copyItems();
void saveItemsWithText();
/**
* Reimplementation to show the popup menu.
*/
virtual void showPopup(TDEListView*, TQListViewItem* i, const TQPoint& point);
protected slots: // Protected slots
void printItems();
/**
* Is connected to the signal executed, which is emitted when a mew item was chosen.
*/
void executed(TQListViewItem*);
private:
struct {
TDEActionMenu* saveMenu;
struct {
TDEAction* result;
TDEAction* resultWithText;
}
save;
TDEActionMenu* printMenu;
struct {
TDEAction* result;
}
print;
TDEActionMenu* copyMenu;
struct {
TDEAction* result;
TDEAction* resultWithText;
}
copy;
}
m_actions;
TDEPopupMenu* m_popup;
CSwordModuleInfo* m_module;
signals: // Signals
void keySelected(const TQString&);
};
} //end of namespace Result
} //end of namespace Search
#endif