2024-07-15 18:20:13 -04:00
///////////////////////////////////////////////////////////////////////////
2025-02-20 14:23:35 +03:00
// C++ code generated with wxFormBuilder (version 4.2.1-0-g80c4cb6)
2024-07-15 18:20:13 -04:00
// http://www.wxformbuilder.org/
//
// PLEASE DO *NOT* EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
# pragma once
# include <wx/artprov.h>
# include <wx/xrc/xmlres.h>
2024-12-22 15:24:18 +03:00
# include <wx/intl.h>
2024-07-15 18:20:13 -04:00
class STD_BITMAP_BUTTON ;
2024-12-30 18:23:34 +00:00
class WX_GRID ;
2024-07-15 18:20:13 -04:00
# include "dialogs/panel_notebook_base.h"
# include "dialog_shim.h"
# include <wx/colour.h>
# include <wx/settings.h>
2024-12-30 18:23:34 +00:00
# include <wx/string.h>
# include <wx/font.h>
# include <wx/grid.h>
# include <wx/gdicmn.h>
2024-07-15 18:20:13 -04:00
# include <wx/bmpbuttn.h>
# include <wx/bitmap.h>
# include <wx/image.h>
# include <wx/icon.h>
# include <wx/button.h>
# include <wx/sizer.h>
2024-12-30 18:23:34 +00:00
# include <wx/statbox.h>
2024-07-15 18:20:13 -04:00
# include <wx/scrolwin.h>
# include <wx/panel.h>
# include <wx/statbmp.h>
2024-12-30 18:23:34 +00:00
# include <wx/stattext.h>
2025-01-12 20:07:28 +00:00
# include <wx/listctrl.h>
2024-07-15 18:20:13 -04:00
# include <wx/textctrl.h>
2024-12-26 11:24:32 -05:00
# include <wx/dialog.h>
2024-07-15 18:20:13 -04:00
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
2025-01-12 20:24:20 +00:00
/// Class PANEL_JOBSET_BASE
2024-07-15 18:20:13 -04:00
///////////////////////////////////////////////////////////////////////////////
2025-01-12 20:24:20 +00:00
class PANEL_JOBSET_BASE : public PANEL_NOTEBOOK_BASE
2024-07-15 18:20:13 -04:00
{
private :
protected :
2024-12-30 18:23:34 +00:00
WX_GRID * m_jobsGrid ;
STD_BITMAP_BUTTON * m_buttonAddJob ;
STD_BITMAP_BUTTON * m_buttonUp ;
STD_BITMAP_BUTTON * m_buttonDown ;
2024-12-31 02:33:19 +00:00
STD_BITMAP_BUTTON * m_buttonDelete ;
2025-03-03 18:34:20 +00:00
wxScrolledWindow * m_destinationList ;
wxBoxSizer * m_destinationListSizer ;
STD_BITMAP_BUTTON * m_buttonAddDestination ;
2024-12-30 18:23:34 +00:00
wxButton * m_buttonSave ;
2025-03-03 18:34:20 +00:00
wxButton * m_buttonGenerateAllDestinations ;
2024-07-15 18:20:13 -04:00
// Virtual event handlers, override them in your derived class
2025-01-06 19:10:42 +00:00
virtual void OnGridCellChange ( wxGridEvent & event ) { event . Skip ( ) ; }
2024-12-30 18:23:34 +00:00
virtual void OnSizeGrid ( wxSizeEvent & event ) { event . Skip ( ) ; }
2024-07-15 18:20:13 -04:00
virtual void OnAddJobClick ( wxCommandEvent & event ) { event . Skip ( ) ; }
2024-10-02 22:53:43 -04:00
virtual void OnJobButtonUp ( wxCommandEvent & event ) { event . Skip ( ) ; }
virtual void OnJobButtonDown ( wxCommandEvent & event ) { event . Skip ( ) ; }
2024-12-30 18:23:34 +00:00
virtual void OnJobButtonDelete ( wxCommandEvent & event ) { event . Skip ( ) ; }
2025-03-03 18:34:20 +00:00
virtual void OnAddDestinationClick ( wxCommandEvent & event ) { event . Skip ( ) ; }
2024-12-30 18:23:34 +00:00
virtual void OnSaveButtonClick ( wxCommandEvent & event ) { event . Skip ( ) ; }
2025-03-03 18:34:20 +00:00
virtual void OnGenerateAllDestinationsClick ( wxCommandEvent & event ) { event . Skip ( ) ; }
2024-07-15 18:20:13 -04:00
public :
2025-01-12 20:24:20 +00:00
PANEL_JOBSET_BASE ( wxWindow * parent , wxWindowID id = wxID_ANY , const wxPoint & pos = wxDefaultPosition , const wxSize & size = wxSize ( 600 , 400 ) , long style = wxTAB_TRAVERSAL , const wxString & name = wxEmptyString ) ;
2024-07-15 18:20:13 -04:00
2025-01-12 20:24:20 +00:00
~ PANEL_JOBSET_BASE ( ) ;
2024-07-15 18:20:13 -04:00
} ;
///////////////////////////////////////////////////////////////////////////////
2025-03-03 18:34:20 +00:00
/// Class PANEL_DESTINATION_BASE
2024-07-15 18:20:13 -04:00
///////////////////////////////////////////////////////////////////////////////
2025-03-03 18:34:20 +00:00
class PANEL_DESTINATION_BASE : public wxPanel
2024-07-15 18:20:13 -04:00
{
private :
protected :
wxStaticBitmap * m_bitmapOutputType ;
wxStaticText * m_textOutputType ;
2024-12-16 22:32:22 -05:00
wxStaticBitmap * m_statusBitmap ;
2025-04-17 14:28:42 +01:00
wxStaticText * m_pathInfo ;
2025-01-03 17:41:37 +00:00
STD_BITMAP_BUTTON * m_buttonProperties ;
STD_BITMAP_BUTTON * m_buttonDelete ;
wxButton * m_buttonGenerate ;
2024-07-15 18:20:13 -04:00
// Virtual event handlers, override them in your derived class
2025-01-03 17:41:37 +00:00
virtual void OnRightDown ( wxMouseEvent & event ) { event . Skip ( ) ; }
2024-12-16 22:32:22 -05:00
virtual void OnLastStatusClick ( wxMouseEvent & event ) { event . Skip ( ) ; }
2025-01-03 17:41:37 +00:00
virtual void OnProperties ( wxCommandEvent & event ) { event . Skip ( ) ; }
virtual void OnDelete ( wxCommandEvent & event ) { event . Skip ( ) ; }
virtual void OnGenerate ( wxCommandEvent & event ) { event . Skip ( ) ; }
2024-07-15 18:20:13 -04:00
public :
2025-03-03 18:34:20 +00:00
PANEL_DESTINATION_BASE ( wxWindow * parent , wxWindowID id = wxID_ANY , const wxPoint & pos = wxDefaultPosition , const wxSize & size = wxSize ( - 1 , - 1 ) , long style = wxBORDER_SUNKEN | wxTAB_TRAVERSAL , const wxString & name = wxEmptyString ) ;
2024-07-15 18:20:13 -04:00
2025-03-03 18:34:20 +00:00
~ PANEL_DESTINATION_BASE ( ) ;
2024-07-15 18:20:13 -04:00
} ;
2024-12-16 22:32:22 -05:00
///////////////////////////////////////////////////////////////////////////////
2025-03-03 18:34:20 +00:00
/// Class DIALOG_JOBSET_RUN_LOG_BASE
2024-12-16 22:32:22 -05:00
///////////////////////////////////////////////////////////////////////////////
2025-03-03 18:34:20 +00:00
class DIALOG_JOBSET_RUN_LOG_BASE : public DIALOG_SHIM
2024-12-16 22:32:22 -05:00
{
private :
protected :
wxStaticText * m_staticTextOutputName ;
wxListCtrl * m_jobList ;
2024-12-23 23:05:29 -05:00
wxTextCtrl * m_textCtrlOutput ;
2024-12-16 22:32:22 -05:00
wxStdDialogButtonSizer * m_sdbSizer ;
wxButton * m_sdbSizerOK ;
// Virtual event handlers, override them in your derived class
2025-03-03 20:19:50 +00:00
virtual void OnUpdateUI ( wxUpdateUIEvent & event ) { event . Skip ( ) ; }
2024-12-23 23:05:29 -05:00
virtual void OnJobListItemSelected ( wxListEvent & event ) { event . Skip ( ) ; }
2024-12-16 22:32:22 -05:00
virtual void OnButtonOk ( wxCommandEvent & event ) { event . Skip ( ) ; }
public :
2025-03-03 18:34:20 +00:00
DIALOG_JOBSET_RUN_LOG_BASE ( wxWindow * parent , wxWindowID id = wxID_ANY , const wxString & title = _ ( " Jobset Run Log " ) , const wxPoint & pos = wxDefaultPosition , const wxSize & size = wxDefaultSize , long style = wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ) ;
2024-12-16 22:32:22 -05:00
2025-03-03 18:34:20 +00:00
~ DIALOG_JOBSET_RUN_LOG_BASE ( ) ;
2024-12-16 22:32:22 -05:00
} ;