~ubuntu-branches/debian/sid/pgadmin3/sid

« back to all changes in this revision

Viewing changes to pgadmin/include/dlg/dlgFunction.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerfried Fuchs
  • Date: 2009-07-30 12:27:16 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730122716-fddbh42on721bbs2
Tags: 1.10.0-1
* New upstream release.
* Adjusted watch file to match release candidates.
* Updated to Standards-Version 3.8.2:
  - Moved to Section: database.
  - Add DEB_BUILD_OPTIONS support for parallel building.
  - Move from findstring to filter suggestion for DEB_BUILD_OPTIONS parsing.
* pgagent got split into its own separate source package by upstream.
* Exclude Docs.vcproj from installation.
* Move doc-base.enus from pgadmin3 to pgadmin3-data package, the files are
  in there too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//////////////////////////////////////////////////////////////////////////
2
2
//
3
3
// pgAdmin III - PostgreSQL Tools
4
 
// RCS-ID:      $Id: dlgFunction.h 6930 2008-01-02 00:10:01Z dpage $
5
 
// Copyright (C) 2002 - 2008, The pgAdmin Development Team
6
 
// This software is released under the Artistic Licence
 
4
// RCS-ID:      $Id: dlgFunction.h 7841 2009-05-05 11:02:29Z dpage $
 
5
// Copyright (C) 2002 - 2009, The pgAdmin Development Team
 
6
// This software is released under the BSD Licence
7
7
//
8
8
// dlgFunction.h - Function property 
9
9
//
37
37
    pgFunction *function;
38
38
    wxArrayString varInfo;
39
39
 
 
40
#ifdef __WXMAC__
 
41
    void OnChangeSize(wxSizeEvent &ev);
 
42
#endif
 
43
 
40
44
    void OnChangeArgName(wxCommandEvent &ev);
41
45
    void OnChangeReturn(wxCommandEvent &ev);
42
46
    void OnChangeSetof(wxCommandEvent &ev);
45
49
    void OnSelChangeType(wxCommandEvent &ev);
46
50
    void OnAddArg(wxCommandEvent &ev);
47
51
    void OnChangeArg(wxCommandEvent &ev);
 
52
    void OnChangeArgMode(wxCommandEvent &ev);
48
53
    void OnRemoveArg(wxCommandEvent &ev);
49
54
 
50
55
    void OnVarAdd(wxCommandEvent &ev);
51
56
    void OnVarRemove(wxCommandEvent &ev);
52
57
    void OnVarSelChange(wxListEvent &ev);
53
58
    void OnVarnameSelChange(wxCommandEvent &ev);
 
59
    void OnChangeWindow(wxCommandEvent &ev);
54
60
    void SetupVarEditor(int var);
55
61
 
56
62
    wxString GetSelectedDirection();
67
73
 
68
74
protected:
69
75
    bool isProcedure;
 
76
    bool isBackendMinVer84;
 
77
    bool isEdbWrapped;
70
78
 
71
79
    DECLARE_EVENT_TABLE()
72
80
};