non-working images in dragimag sample git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14227 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			203 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			203 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        dialogs.cpp
 | 
						|
// Purpose:     Life! dialogs
 | 
						|
// Author:      Guillermo Rodriguez Garcia, <guille@iies.es>
 | 
						|
// Modified by:
 | 
						|
// Created:     Jan/2000
 | 
						|
// RCS-ID:      $Id$
 | 
						|
// Copyright:   (c) 2000, Guillermo Rodriguez Garcia
 | 
						|
// Licence:     wxWindows licence
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
// ==========================================================================
 | 
						|
// headers, declarations, constants
 | 
						|
// ==========================================================================
 | 
						|
 | 
						|
#ifdef __GNUG__
 | 
						|
    #pragma implementation "dialogs.h"
 | 
						|
#endif
 | 
						|
 | 
						|
// For compilers that support precompilation, includes "wx/wx.h".
 | 
						|
#include "wx/wxprec.h"
 | 
						|
 | 
						|
#ifdef __BORLANDC__
 | 
						|
#pragma hdrstop
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef WX_PRECOMP
 | 
						|
#include "wx/wx.h"
 | 
						|
#endif
 | 
						|
 | 
						|
#include "wx/statline.h"
 | 
						|
#include "wx/minifram.h"
 | 
						|
 | 
						|
#include "dialogs.h"
 | 
						|
#include "life.h"
 | 
						|
#include "game.h"
 | 
						|
 | 
						|
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
// resources
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
 | 
						|
#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXX11__)
 | 
						|
    // logo for the about dialog
 | 
						|
    #include "bitmaps/life.xpm"
 | 
						|
#endif
 | 
						|
 | 
						|
// sample configurations
 | 
						|
#include "samples.inc"
 | 
						|
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
// constants
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
 | 
						|
// IDs for the controls and the menu commands
 | 
						|
enum
 | 
						|
{
 | 
						|
    // listbox in samples dialog
 | 
						|
    ID_LISTBOX
 | 
						|
};
 | 
						|
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
// event tables and other macros for wxWindows
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
 | 
						|
// Event tables
 | 
						|
BEGIN_EVENT_TABLE(LifeSamplesDialog, wxDialog)
 | 
						|
    EVT_LISTBOX (ID_LISTBOX, LifeSamplesDialog::OnListBox)
 | 
						|
END_EVENT_TABLE()
 | 
						|
 | 
						|
 | 
						|
// ==========================================================================
 | 
						|
// implementation
 | 
						|
// ==========================================================================
 | 
						|
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
// LifeSamplesDialog
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
 | 
						|
LifeSamplesDialog::LifeSamplesDialog(wxWindow *parent)
 | 
						|
                 : wxDialog(parent, -1,
 | 
						|
                            _("Sample games"),
 | 
						|
                            wxDefaultPosition,
 | 
						|
                            wxDefaultSize,
 | 
						|
                            wxDEFAULT_DIALOG_STYLE | wxDIALOG_MODAL)
 | 
						|
{
 | 
						|
    m_value = 0;
 | 
						|
   
 | 
						|
    // create and populate the list of available samples
 | 
						|
    m_list = new wxListBox( this, ID_LISTBOX,
 | 
						|
        wxDefaultPosition,
 | 
						|
        wxDefaultSize,
 | 
						|
        0, NULL,
 | 
						|
        wxLB_SINGLE | wxLB_NEEDED_SB | wxLB_HSCROLL );
 | 
						|
 | 
						|
    for (unsigned i = 0; i < (sizeof(g_patterns) / sizeof(LifePattern)); i++)
 | 
						|
        m_list->Append(g_patterns[i].m_name);
 | 
						|
 | 
						|
    // descriptions
 | 
						|
    wxStaticBox *statbox = new wxStaticBox( this, -1, _("Description"));
 | 
						|
    m_life   = new Life();
 | 
						|
    m_life->SetPattern(g_patterns[0]);
 | 
						|
    m_canvas = new LifeCanvas( this, m_life, FALSE );
 | 
						|
    m_text   = new wxTextCtrl( this, -1,
 | 
						|
        g_patterns[0].m_description,
 | 
						|
        wxDefaultPosition,
 | 
						|
        wxSize(300, 60),
 | 
						|
        wxTE_MULTILINE | wxTE_READONLY);
 | 
						|
 | 
						|
    // layout components
 | 
						|
    wxStaticBoxSizer *sizer1 = new wxStaticBoxSizer( statbox, wxVERTICAL );
 | 
						|
    sizer1->Add( m_canvas, 2, wxGROW | wxALL, 5);
 | 
						|
    sizer1->Add( m_text, 1, wxGROW | wxALL, 5 );
 | 
						|
 | 
						|
    wxBoxSizer *sizer2 = new wxBoxSizer( wxHORIZONTAL );
 | 
						|
    sizer2->Add( m_list, 0, wxGROW | wxALL, 5 );
 | 
						|
    sizer2->Add( sizer1, 1, wxGROW | wxALL, 5 );
 | 
						|
 | 
						|
    wxBoxSizer *sizer3 = new wxBoxSizer( wxVERTICAL );
 | 
						|
    sizer3->Add( CreateTextSizer(_("Select one configuration")), 0, wxALL, 10 );
 | 
						|
    sizer3->Add( new wxStaticLine(this, -1), 0, wxGROW | wxLEFT | wxRIGHT, 10 );
 | 
						|
    sizer3->Add( sizer2, 1, wxGROW | wxALL, 5 );
 | 
						|
    sizer3->Add( new wxStaticLine(this, -1), 0, wxGROW | wxLEFT | wxRIGHT, 10 );
 | 
						|
    sizer3->Add( CreateButtonSizer(wxOK | wxCANCEL), 0, wxCENTRE | wxALL, 10 );
 | 
						|
 | 
						|
    // activate
 | 
						|
    SetSizer(sizer3);
 | 
						|
    SetAutoLayout(TRUE);
 | 
						|
    sizer3->SetSizeHints(this);
 | 
						|
    sizer3->Fit(this);
 | 
						|
    Centre(wxBOTH | wxCENTRE_ON_SCREEN);
 | 
						|
}
 | 
						|
 | 
						|
LifeSamplesDialog::~LifeSamplesDialog()
 | 
						|
{
 | 
						|
    m_canvas->Destroy();
 | 
						|
}
 | 
						|
 | 
						|
const LifePattern& LifeSamplesDialog::GetPattern()
 | 
						|
{
 | 
						|
    return g_patterns[m_value];
 | 
						|
}
 | 
						|
 | 
						|
void LifeSamplesDialog::OnListBox(wxCommandEvent& event)
 | 
						|
{
 | 
						|
    int sel = event.GetSelection();
 | 
						|
 | 
						|
    if (sel != -1)
 | 
						|
    {
 | 
						|
        m_value = m_list->GetSelection();
 | 
						|
        m_text->SetValue(g_patterns[ sel ].m_description);
 | 
						|
        m_life->SetPattern(g_patterns[ sel ]);
 | 
						|
 | 
						|
        // these values shouldn't be hardcoded...
 | 
						|
        if ((size_t)sel < (sizeof(g_patterns) / sizeof(LifePattern)) - 3)
 | 
						|
            m_canvas->SetCellSize(8);
 | 
						|
        else
 | 
						|
            m_canvas->SetCellSize(2);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
// LifeAboutDialog
 | 
						|
// --------------------------------------------------------------------------
 | 
						|
 | 
						|
LifeAboutDialog::LifeAboutDialog(wxWindow *parent)
 | 
						|
               : wxDialog(parent, -1,
 | 
						|
                          _("About Life!"),
 | 
						|
                          wxDefaultPosition,
 | 
						|
                          wxDefaultSize,
 | 
						|
                          wxDEFAULT_DIALOG_STYLE | wxDIALOG_MODAL)
 | 
						|
{
 | 
						|
    // logo
 | 
						|
    wxBitmap bmp = wxBITMAP(life);
 | 
						|
#if !defined(__WXGTK__) && !defined(__WXMOTIF__) && !defined(__WXMAC__)
 | 
						|
    bmp.SetMask(new wxMask(bmp, *wxBLUE));
 | 
						|
#endif
 | 
						|
    wxStaticBitmap *sbmp = new wxStaticBitmap(this, -1, bmp);
 | 
						|
 | 
						|
    // layout components
 | 
						|
    wxBoxSizer *sizer = new wxBoxSizer( wxVERTICAL );
 | 
						|
    sizer->Add( sbmp, 0, wxCENTRE | wxALL, 10 );
 | 
						|
    sizer->Add( new wxStaticLine(this, -1), 0, wxGROW | wxLEFT | wxRIGHT, 5 );
 | 
						|
    sizer->Add( CreateTextSizer(_("Life! version 2.2 for wxWindows\n\n"
 | 
						|
                                  "(c) 2000 Guillermo Rodriguez Garcia\n\n"
 | 
						|
                                  "<guille@iies.es>\n\n"
 | 
						|
                                  "Portions of the code are based in XLife;\n"
 | 
						|
                                  "XLife is (c) 1989 by Jon Bennett et al.")),
 | 
						|
                                  0, wxCENTRE | wxALL, 20 );
 | 
						|
    sizer->Add( new wxStaticLine(this, -1), 0, wxGROW | wxLEFT | wxRIGHT, 5 );
 | 
						|
    sizer->Add( CreateButtonSizer(wxOK), 0, wxCENTRE | wxALL, 10 );
 | 
						|
 | 
						|
    // activate
 | 
						|
    SetSizer(sizer);
 | 
						|
    SetAutoLayout(TRUE);
 | 
						|
    sizer->SetSizeHints(this);
 | 
						|
    sizer->Fit(this);
 | 
						|
    Centre(wxBOTH | wxCENTRE_ON_SCREEN);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 |