looper/backends/ui/haiku/prefs.h
Zachary Hall 8fdf30878b
Some checks failed
Build / build-gentoo (push) Successful in 1m22s
Build / download-system-deps (push) Successful in 1m37s
Build / get-source-code (push) Successful in 4m30s
Build / build-appimage (push) Successful in 1m15s
Build / build-android (push) Failing after 4m34s
Build / build-windows (push) Failing after 4m33s
Add Haiku frontend
2024-11-12 14:53:44 -08:00

36 lines
915 B
C++

#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>
class PrefsWindow : public BWindow {
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;
PrefsWindow(BLooper *next_handler);
};