| | |
| | | void onModelsRefresh( wxCommandEvent& event ); |
| | | void onModelSelect( wxCommandEvent& event ); |
| | | void onVaeSelect( wxCommandEvent& event ); |
| | | void onRandomGenerateButton( wxCommandEvent& event ); |
| | | void onResolutionSwap( wxCommandEvent& event ); |
| | | void onJobsStart( wxCommandEvent& event ); |
| | | void onJobsPause( wxCommandEvent& event ); |
| | |
| | | std::string currentModel; |
| | | sd_ctx_t *sd_ctx; |
| | | std::streambuf *buffer; |
| | | std::vector<std::thread> threads; |
| | | std::vector<std::thread*> threads; |
| | | |
| | | // row,QueueItem |
| | | std::map<int, QM::QueueItem*> JobTableItems; |
| | |
| | | void loadModelList(); |
| | | void loadVaeList(); |
| | | void OnCloseSettings(wxCloseEvent &event); |
| | | void OnPopupClick(wxCommandEvent &evt); |
| | | void LoadFileList(sd_gui_utils::DirTypes type = sd_gui_utils::DirTypes::CHECKPOINT); |
| | | void LoadPresets(); |
| | | |
| | |
| | | wxNotificationMessage *notification; |
| | | |
| | | |
| | | |
| | | }; |
| | | |
| | | #endif // __MainWindowUI__ |