Source: hk_kdeclasses/hk_kdeclasses/hk_kdememo.h
|
|
|
|
// ****************************************************************************
// copyright (c) 2000-2004 Horst Knorr
// This file is part of the hk_kdeclasses library.
// This file may be distributed and/or modified under the terms of the
// GNU Library Public License version 2 as published by the Free Software
// Foundation and appearing in the file LGPL included in the
// packaging of this file.
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#ifndef HK_KDEMEMO_H
#define HK_KDEMEMO_H
#include
#include
#include
class hk_kdefinddialog;
/**
*
*@short KDE Widget to edit/display long data like text in a field.
*@version $Revision: 1.5 $
*@author Horst Knorr (hk_classes@knoda.org)
*Just set the datasource and the column (defined in the parent class @ref hk_dsdatavisible).
*/
class hk_kdememo: public QTextEdit,public hk_dsmemo
{
Q_OBJECT
public:
hk_kdememo(QWidget* wid,hk_form* f=NULL);
~hk_kdememo();
virtual void set_value(const hk_string&);
virtual hk_string value(void);
protected:
virtual bool widget_specific_coordinates(uint px,uint py,uint pwidth,uint pheight);
virtual bool widget_specific_row_change(void);
virtual void widget_specific_insert_mode(void);
virtual void widget_specific_row_deleted(void);
virtual void widget_specific_row_added(void);
virtual void widget_specific_alignment(void);
virtual void presentationmode_changed(void);
bool datasource_disable(void);
bool datasource_enable(void);
void datasource_delete(void);
virtual void widget_specific_font_changed(void);
virtual void resizeEvent (QResizeEvent *);
virtual void moveEvent ( QMoveEvent * ) ;
virtual void widget_specific_backgroundcolour_changed(const hk_colour&);
virtual void widget_specific_foregroundcolour_changed(const hk_colour&);
void keyPressEvent ( QKeyEvent * e );
virtual QPopupMenu* createPopupMenu(const QPoint&);
protected slots:
void slot_data_changed(void);
void before_row_change(void);
void before_store_changed_data(void);
void slot_mouse_clicked(void);
void slot_mouse_doubleclicked(void);
void NULLselected( int r );
public slots:
void find_clicked(int);
void find_next(void);
void findargument_changed(void);
private:
void reposition(void);
bool p_widget_specific_row_change;
void widget_specific_enable_disable(void);
bool has_changed;
int NULLpopupid;
int findpopupid;
hk_kdefinddialog* p_finddialog;
bool p_findfirstview;
};
#endif
Generated by: horst on horstnotebook on Mon Nov 22 10:41:06 2004, using kdoc 2.0a54. |