]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/radiobox.h
added JPEG support
[wxWidgets.git] / include / wx / msw / radiobox.h
index 5cb2077a646e088f225bd514bc76b55fa44f4eb7..6d86bed7422c4d8ef8349387da1fd6e5abe41648 100644 (file)
@@ -5,12 +5,12 @@
 // Modified by:
 // Created:     01/02/97
 // RCS-ID:      $Id$
-// Copyright:   (c) Julian Smart and Markus Holzem
-// Licence:    wxWindows license
+// Copyright:   (c) Julian Smart
+// Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef __RADIOBOXH__
-#define __RADIOBOXH__
+#ifndef _WX_RADIOBOX_H_
+#define _WX_RADIOBOX_H_
 
 #ifdef __GNUG__
 #pragma interface "radiobox.h"
@@ -93,9 +93,18 @@ public:
   void SetSelection(int N);
   int GetSelection(void) const;
   wxString GetString(int N) const;
+
   void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
+  void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
+    { wxWindow::SetSize(rect, sizeFlags); }
+  void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
+
   void GetSize(int *x, int *y) const;
+  wxSize GetSize() const { return wxWindow::GetSize(); }
+
   void GetPosition(int *x, int *y) const;
+  wxPoint GetPosition() const { return wxWindow::GetPosition(); }
+
   wxString GetLabel(void) const;
   void SetLabel(const wxString& label);
   void SetLabel(int item, const wxString& label) ;
@@ -121,6 +130,8 @@ public:
   inline WXHWND *GetRadioButtons(void) const { return m_radioButtons; }
   bool ContainsHWND(WXHWND hWnd) const ;
 
+  long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
+
 protected:
   WXHWND *          m_radioButtons;
   int               m_majorDim ;
@@ -134,4 +145,4 @@ protected:
 };
 
 #endif
-    // __RADIOBOXH__
+    // _WX_RADIOBOX_H_