~ubuntu-branches/ubuntu/utopic/pgadmin3/utopic

« back to all changes in this revision

Viewing changes to src/include/ctl/xh_ctlcombo.h

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Enrici, src/frm/frmBackup.cpp, debian/control
  • Date: 2006-10-06 21:06:48 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 edgy)
  • Revision ID: james.westby@ubuntu.com-20061006210648-nscnazrse5jbwswf
* Patched frmBackup.cpp to ensure the schema is specified when backing up
  individual tables. (Closes: #387256)
  [src/frm/frmBackup.cpp]
* Cleaned up and updated description of the package. (Closes: #379188)
  [debian/control]

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//////////////////////////////////////////////////////////////////////////
 
2
//
 
3
// pgAdmin III - PostgreSQL Tools
 
4
// RCS-ID:      $Id: xh_ctlcombo.h 4874 2006-01-06 17:33:27Z dpage $
 
5
// Copyright (C) 2002 - 2006, The pgAdmin Development Team
 
6
// This software is released under the Artistic Licence
 
7
//
 
8
// xh_ctlcombo.h - ctlComboBox handler
 
9
//
 
10
//////////////////////////////////////////////////////////////////////////
 
11
 
 
12
 
 
13
#ifndef _WX_XH_CTLCOMBO_H_
 
14
#define _WX_XH_CTLCOMBO_H_
 
15
 
 
16
 
 
17
#include "wx/xrc/xmlres.h"
 
18
#include "wx/xrc/xh_combo.h"
 
19
 
 
20
//class WXDLLIMPEXP_XRC 
 
21
class ctlComboBoxXmlHandler : public wxComboBoxXmlHandler
 
22
{
 
23
DECLARE_DYNAMIC_CLASS(ctlComboBoxXmlHandler)
 
24
public:
 
25
    ctlComboBoxXmlHandler() : wxComboBoxXmlHandler() {}
 
26
    virtual wxObject *DoCreateResource();
 
27
    virtual bool CanHandle(wxXmlNode *node);
 
28
};
 
29
 
 
30
 
 
31
#endif