~ubuntu-branches/ubuntu/maverick/notecase/maverick

« back to all changes in this revision

Viewing changes to src/OptionsDialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2005-09-09 09:32:43 UTC
  • Revision ID: james.westby@ubuntu.com-20050909093243-s6namw0yh7q3tqy0
Tags: upstream-1.0.5
ImportĀ upstreamĀ versionĀ 1.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
////////////////////////////////////////////////////////////////////////////
 
2
// NoteCase notes manager project <http://notecase.sf.net>
 
3
//
 
4
// This code is licensed under BSD license.See "license.txt" for more details.
 
5
//
 
6
// File: Window class for Options dialog
 
7
////////////////////////////////////////////////////////////////////////////
 
8
 
 
9
#ifndef OptionsDialog_H_
 
10
#define OptionsDialog_H_
 
11
 
 
12
#if _MSC_VER > 1000
 
13
#pragma once
 
14
#endif // _MSC_VER > 1000
 
15
 
 
16
#include "gui/Dialog.h"
 
17
#include <string>
 
18
 
 
19
class OptionsDialog : public Dialog  
 
20
{
 
21
public:
 
22
        OptionsDialog();
 
23
        virtual ~OptionsDialog();
 
24
 
 
25
        virtual void Create();
 
26
        
 
27
        void OnDialogInit();
 
28
        void OnDialogOK();
 
29
 
 
30
protected:
 
31
        GtkWidget* create_options_dialog (GtkWidget* parent=NULL);
 
32
        std::string m_strLocale;
 
33
};
 
34
 
 
35
#endif // OptionsDialog_H_