// Name: clipboard.cpp
// Purpose: clipboard wxWidgets sample
// Author: Robert Roebling
-// RCS-ID: $Id: minimal.cpp 53461 2008-05-05 23:30:33Z VZ $
+// RCS-ID: $Id$
// Copyright: (c) Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/clipbrd.h"
-#if !defined(__WXMSW__) && !defined(__WXPM__)
+#ifndef wxHAS_IMAGES_IN_RESOURCES
#include "../sample.xpm"
#endif
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
- helpMenu->Append(ID_About, "&About...\tF1", "Show about dialog");
+ helpMenu->Append(ID_About, "&About\tF1", "Show about dialog");
fileMenu->Append(ID_Quit, "E&xit\tAlt-X", "Quit this program");
wxPanel *panel = new wxPanel( this, -1 );
wxBoxSizer *main_sizer = new wxBoxSizer( wxVERTICAL );
- main_sizer->Add( new wxButton( panel, ID_Write, "Get clipboard text" ) );
+ main_sizer->Add( new wxButton( panel, ID_Write, "Get clipboard text" ), 0, wxALL, 5 );
m_textctrl = new wxTextCtrl( panel, ID_Text, "", wxDefaultPosition,
wxDefaultSize, wxTE_MULTILINE );
main_sizer->Add( m_textctrl, 1, wxGROW );