~ubuntu-branches/ubuntu/quantal/mysql-workbench/quantal

« back to all changes in this revision

Viewing changes to backend/wbpublic/grtui/wizard_schema_filter_page.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-03-01 21:57:30 UTC
  • Revision ID: package-import@ubuntu.com-20120301215730-o7y8av8y38n162ro
Tags: upstream-5.2.38+dfsg
ImportĀ upstreamĀ versionĀ 5.2.38+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License as
 
6
 * published by the Free Software Foundation; version 2 of the
 
7
 * License.
 
8
 * 
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
12
 * GNU General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 
17
 * 02110-1301  USA
 
18
 */
 
19
#ifndef _WIZARD_SCHEMA_FILTER_PAGE_H_
 
20
#define _WIZARD_SCHEMA_FILTER_PAGE_H_
 
21
 
 
22
#include "grt_wizard_form.h"
 
23
#include "checkbox_list_control.h"
 
24
 
 
25
#include "mforms/imagebox.h"
 
26
#include "mforms/box.h"
 
27
#include "mforms/label.h"
 
28
 
 
29
 
 
30
namespace grtui {
 
31
  class WBPUBLICBACKEND_PUBLIC_FUNC WizardSchemaFilterPage : public WizardPage
 
32
  {
 
33
  public:
 
34
    WizardSchemaFilterPage(WizardForm *form, const char *name);
 
35
    
 
36
    virtual void enter(bool advancing);
 
37
    virtual void leave(bool advancing);
 
38
 
 
39
    virtual bool allow_next();
 
40
 
 
41
  protected:
 
42
    mforms::Box _header;
 
43
    mforms::ImageBox _image;
 
44
    mforms::Label _label;
 
45
    StringCheckBoxList _check_list;
 
46
  };
 
47
};
 
48
 
 
49
#endif /* _WIZARD_SCHEMA_FILTER_PAGE_H_ */