~ubuntu-dev/wxwidgets2.6/upstream-debian

« back to all changes in this revision

Viewing changes to include/wx/generic/statline.h

  • Committer: Daniel T Chen
  • Date: 2006-06-26 10:15:11 UTC
  • Revision ID: crimsun@ubuntu.com-20060626101511-a4436cec4c6d9b35
ImportĀ DebianĀ 2.6.3.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////////
 
2
// Name:        generic/statline.h
 
3
// Purpose:     a generic wxStaticLine class
 
4
// Author:      Vadim Zeitlin
 
5
// Created:     28.06.99
 
6
// Version:     $Id: statline.h,v 1.10 2005/03/11 02:12:53 VZ Exp $
 
7
// Copyright:   (c) 1998 Vadim Zeitlin
 
8
// Licence:     wxWindows licence
 
9
/////////////////////////////////////////////////////////////////////////////
 
10
 
 
11
#ifndef _WX_GENERIC_STATLINE_H_
 
12
#define _WX_GENERIC_STATLINE_H_
 
13
 
 
14
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 
15
    #pragma interface "statline.h"
 
16
#endif
 
17
 
 
18
class wxStaticBox;
 
19
 
 
20
// ----------------------------------------------------------------------------
 
21
// wxStaticLine
 
22
// ----------------------------------------------------------------------------
 
23
 
 
24
class WXDLLEXPORT wxStaticLine : public wxStaticLineBase
 
25
{
 
26
    DECLARE_DYNAMIC_CLASS(wxStaticLine)
 
27
 
 
28
public:
 
29
    // constructors and pseudo-constructors
 
30
    wxStaticLine() { m_statbox = NULL; }
 
31
 
 
32
    wxStaticLine( wxWindow *parent,
 
33
                  wxWindowID id = wxID_ANY,
 
34
                  const wxPoint &pos = wxDefaultPosition,
 
35
                  const wxSize &size = wxDefaultSize,
 
36
                  long style = wxLI_HORIZONTAL,
 
37
                  const wxString &name = wxStaticTextNameStr )
 
38
    {
 
39
        Create(parent, id, pos, size, style, name);
 
40
    }
 
41
 
 
42
    virtual ~wxStaticLine();
 
43
 
 
44
    bool Create( wxWindow *parent,
 
45
                 wxWindowID id = wxID_ANY,
 
46
                 const wxPoint &pos = wxDefaultPosition,
 
47
                 const wxSize &size = wxDefaultSize,
 
48
                 long style = wxLI_HORIZONTAL,
 
49
                 const wxString &name = wxStaticTextNameStr );
 
50
 
 
51
    // it's necessary to override this wxWindow function because we
 
52
    // will want to return the main widget for m_statbox
 
53
    //
 
54
    WXWidget GetMainWidget() const;
 
55
 
 
56
    // override wxWindow methods to make things work
 
57
    virtual void DoSetSize(int x, int y, int width, int height,
 
58
                           int sizeFlags = wxSIZE_AUTO);
 
59
    virtual void DoMoveWindow(int x, int y, int width, int height);
 
60
protected:
 
61
    // we implement the static line using a static box
 
62
    wxStaticBox *m_statbox;
 
63
};
 
64
 
 
65
#endif // _WX_GENERIC_STATLINE_H_
 
66