]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/minifram.h
Win16 cursor/icon functions are not needed any longer
[wxWidgets.git] / include / wx / msw / minifram.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
3ca6a5f0 2// Name: wx/msw/minifram.h
2bda0e17
KB
3// Purpose: wxMiniFrame class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc 8// Copyright: (c) Julian Smart
3ca6a5f0 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_MINIFRAM_H_
13#define _WX_MINIFRAM_H_
2bda0e17
KB
14
15#ifdef __GNUG__
16#pragma interface "minifram.h"
17#endif
18
19#include "wx/frame.h"
20
7309b92d
VS
21#ifdef __WIN32__
22
3ca6a5f0
BP
23class WXDLLEXPORT wxMiniFrame : public wxFrame
24{
7309b92d 25public:
3ca6a5f0
BP
26 wxMiniFrame() { }
27 wxMiniFrame(wxWindow *parent,
28 wxWindowID id,
29 const wxString& title,
30 const wxPoint& pos = wxDefaultPosition,
31 const wxSize& size = wxDefaultSize,
32 long style = wxCAPTION | wxCLIP_CHILDREN | wxRESIZE_BORDER,
33 const wxString& name = wxFrameNameStr)
7309b92d 34 {
869f248c
VZ
35 Create(parent, id, title, pos, size,
36 style |
37 wxFRAME_TOOL_WINDOW |
38 (parent ? wxFRAME_FLOAT_ON_PARENT : 0), name);
7309b92d
VS
39 }
40
41protected:
3ca6a5f0 42 DECLARE_DYNAMIC_CLASS(wxMiniFrame)
7309b92d
VS
43};
44
45
3ca6a5f0 46#else // !Win32
2bda0e17 47
3ca6a5f0
BP
48class WXDLLEXPORT wxMiniFrame : public wxFrame
49{
2bda0e17 50public:
3ca6a5f0
BP
51 wxMiniFrame() { }
52 wxMiniFrame(wxWindow *parent,
53 wxWindowID id,
54 const wxString& title,
55 const wxPoint& pos = wxDefaultPosition,
56 const wxSize& size = wxDefaultSize,
57 long style = wxDEFAULT_FRAME_STYLE|wxTINY_CAPTION_HORIZ,
58 const wxString& name = wxFrameNameStr)
2bda0e17
KB
59 {
60 Create(parent, id, title, pos, size, style, name);
61 }
62
3ca6a5f0 63 virtual ~wxMiniFrame();
2bda0e17 64
3ca6a5f0 65 virtual long MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
2bda0e17 66
3ca6a5f0 67 DECLARE_DYNAMIC_CLASS(wxMiniFrame)
2bda0e17
KB
68};
69
3ca6a5f0 70#endif // Win32/!Win32
7309b92d 71
2bda0e17 72#endif
bbcdf8bc 73 // _WX_MINIFRAM_H_