Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > fe79e52f483d083598b746128e94a3a5 > files > 115

libcodeblocks-devel-8.02-2mdv2009.0.i586.rpm

/*
 * This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
 * http://www.gnu.org/licenses/lgpl-3.0.html
 */

#ifndef SELECTTARGETDLG_H
#define SELECTTARGETDLG_H

#include <wx/dialog.h>

class cbProject;
class ProjectBuildTarget;

class SelectTargetDlg : public wxDialog
{
	public:
		SelectTargetDlg(wxWindow* parent, cbProject* project, int selected = 0);
		~SelectTargetDlg();

		void EndModal(int retCode);
		int GetSelection() const { return m_Selected; }
		ProjectBuildTarget* GetSelectionTarget();
	private:
		void OnListboxSelection(wxCommandEvent& event);
		void OnListboxDClick(wxCommandEvent& event);
        void OnCheckboxSelection(wxCommandEvent& event);
        void OnHostApplicationButtonClick(wxCommandEvent& event);
		void UpdateSelected();
		cbProject* m_pProject;
		int m_Selected;

		DECLARE_EVENT_TABLE()
};

#endif // SELECTTARGETDLG_H