Databaseconnectionclasses  0.5.3
hk_dslineedit.h
1 // ****************************************************************************
2 // copyright (c) 2000-2005 Horst Knorr <hk_classes@knoda.org>
3 // This file is part of the hk_classes library.
4 // This file may be distributed and/or modified under the terms of the
5 // GNU Library Public License version 2 as published by the Free Software
6 // Foundation and appearing in the file COPYING included in the
7 // packaging of this file.
8 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
9 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
10 // ****************************************************************************
11 #ifndef HK_DSLINEEDIT
12 #define HK_DSLINEEDIT
13 #include "hk_dsdatavisible.h"
14 using namespace std;
15 class hk_dsgridcolumn;
25 {
26  public:
27  hk_dslineedit(hk_form* form=NULL);
28  virtual ~hk_dslineedit();
29  void set_gridcolumn(hk_dsgridcolumn* );
30  hk_dsgridcolumn*gridcolumn (void) const;
31  protected:
32 
33  //needed for gridcolumn actions where a line editor takes the input (eg. action_on_key)
34  hk_dsgridcolumn* p_gridcolumn;
35 };
36 #endif
structure of a column in a grid
Definition: hk_dsgridcolumn.h:29
base class for forms
Definition: hk_form.h:43
base class for lineedit fields
Definition: hk_dslineedit.h:24
base class for visible widgets with data connection
Definition: hk_dsdatavisible.h:32