28115a847c
* Created mo-files for Ukrainian and English languages * For this moment it works only on BedShapeDialog.
36 lines
772 B
C++
36 lines
772 B
C++
#include <vector>
|
|
#include <string>
|
|
|
|
namespace Slic3r {
|
|
class DynamicPrintConfig;
|
|
class PresetCollection;
|
|
|
|
namespace GUI {
|
|
class Tab;
|
|
}
|
|
|
|
class TabIface {
|
|
public:
|
|
TabIface() : m_tab(nullptr) {}
|
|
TabIface(GUI::Tab *tab) : m_tab(tab) {}
|
|
// TabIface(const TabIface &rhs) : m_tab(rhs.m_tab) {}
|
|
|
|
void load_current_preset();
|
|
void update_tab_ui();
|
|
void update_ui_from_settings();
|
|
void select_preset(char* name);
|
|
std::string title();
|
|
void load_config(DynamicPrintConfig* config);
|
|
void load_key_value(char* opt_key, char* value);
|
|
bool current_preset_is_dirty();
|
|
void OnActivate();
|
|
DynamicPrintConfig* get_config();
|
|
PresetCollection* get_presets();
|
|
std::vector<std::string> get_dependent_tabs();
|
|
|
|
protected:
|
|
GUI::Tab *m_tab;
|
|
};
|
|
|
|
}; // namespace Slic3r
|