~ubuntu-branches/debian/squeeze/pgadmin3/squeeze

« back to all changes in this revision

Viewing changes to src/include/dlgLanguage.h

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Porcheron
  • Date: 2008-02-07 00:56:22 UTC
  • mto: (2.1.6 hardy) (6.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20080207005622-c2ail8p4d0sk3dnw
Tags: upstream-1.8.2
ImportĀ upstreamĀ versionĀ 1.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//////////////////////////////////////////////////////////////////////////
2
 
//
3
 
// pgAdmin III - PostgreSQL Tools
4
 
// RCS-ID:      $Id: dlgLanguage.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
 
// dlgLanguage.h - Language property
9
 
//
10
 
//////////////////////////////////////////////////////////////////////////
11
 
 
12
 
 
13
 
#ifndef __DLG_LANGUAGEPROP
14
 
#define __DLG_LANGUAGEPROP
15
 
 
16
 
#include "dlgProperty.h"
17
 
 
18
 
class pgLanguage;
19
 
 
20
 
class dlgLanguage : public dlgSecurityProperty
21
 
{
22
 
public:
23
 
    dlgLanguage(pgaFactory *factory, frmMain *frame, pgLanguage *db);
24
 
    int Go(bool modal);
25
 
 
26
 
    void CheckChange();
27
 
    wxString GetSql();
28
 
    pgObject *CreateObject(pgCollection *collection);
29
 
    pgObject *GetObject();
30
 
 
31
 
private:
32
 
    pgLanguage *language;
33
 
 
34
 
    DECLARE_EVENT_TABLE();
35
 
};
36
 
 
37
 
 
38
 
#endif