2024-11-12 14:53:44 -08:00
|
|
|
#pragma once
|
|
|
|
#include <Window.h>
|
|
|
|
#include <StringView.h>
|
|
|
|
#include <GroupLayout.h>
|
|
|
|
#include <Message.h>
|
|
|
|
#include <Control.h>
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
#include <StringView.h>
|
|
|
|
#include <RadioButton.h>
|
|
|
|
#include <Button.h>
|
|
|
|
#include <OptionPopUp.h>
|
|
|
|
#include <CheckBox.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
2024-11-21 10:22:34 -08:00
|
|
|
class HaikuPrefsWindow : public BWindow {
|
2024-11-12 14:53:44 -08:00
|
|
|
std::vector<std::string> backend_ids;
|
|
|
|
int32 cur_option = 0;
|
|
|
|
BLooper *next_handler;
|
|
|
|
BStringView *restart_warning;
|
|
|
|
std::string new_label_setting;
|
|
|
|
std::string new_frontend;
|
|
|
|
BOptionPopUp *frontend_popup;
|
|
|
|
BCheckBox *menu_icons;
|
|
|
|
BRadioButton *labels_only;
|
|
|
|
BRadioButton *icons_only;
|
|
|
|
BRadioButton *both_labels_icons;
|
|
|
|
BButton *revert_btn;
|
|
|
|
BButton *apply_btn;
|
|
|
|
void update_label_setting();
|
|
|
|
void set_options_changed(bool changed);
|
|
|
|
public:
|
|
|
|
bool QuitRequested() override;
|
|
|
|
void MessageReceived(BMessage *msg) override;
|
2024-11-21 10:22:34 -08:00
|
|
|
HaikuPrefsWindow(BLooper *next_handler);
|
2024-11-12 14:53:44 -08:00
|
|
|
};
|