Formatted code (#1007)

* Updated style

* Updated files

* fixed new line

* Updated spacing

* File fix WIP

* Updated to clang 13

* updated comment style

* Removed old comment code
This commit is contained in:
jLynx 2023-05-19 08:16:05 +12:00 committed by GitHub
parent 7aca7ce74d
commit 033c4e9a5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
599 changed files with 70746 additions and 66896 deletions

View file

@ -1,7 +1,7 @@
/*
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
* Copyright (C) 2017 Furrtek
*
*
* This file is part of PortaPack.
*
* This program is free software; you can redistribute it and/or modify
@ -33,59 +33,53 @@
namespace ui {
class QRCodeImage : public Widget {
public:
public:
QRCodeImage(Rect parent_rect);
void set_text(const char* qr_text) {
qr_text_ = qr_text;
}
void paint(Painter& painter) override;
// for -weffc++ to be killed
~QRCodeImage(); // destructor
QRCodeImage(const QRCodeImage& Image);
QRCodeImage& operator=(const QRCodeImage& Image); // assignment
QRCodeImage(Rect parent_rect);
void set_text(const char * qr_text) {
qr_text_ = qr_text;
}
void paint(Painter& painter) override;
// for -weffc++ to be killed
~QRCodeImage(); // destructor
QRCodeImage(const QRCodeImage&Image);
QRCodeImage & operator=(const QRCodeImage &Image); // assignment
private:
const char * qr_text_ = NULL ;
private:
const char* qr_text_ = NULL;
};
class QRCodeView : public View {
public:
QRCodeView(
NavigationView& nav,
const char * qr_text,
const std::function<void(void)> on_close = nullptr
);
~QRCodeView();
QRCodeView(const QRCodeView&) = delete;
QRCodeView(QRCodeView&&) = delete;
QRCodeView& operator=(const QRCodeView&) = delete;
QRCodeView& operator=(QRCodeView&&) = delete;
std::string title() const override { return "QR code"; };
void focus() override;
public:
QRCodeView(
NavigationView& nav,
const char* qr_text,
const std::function<void(void)> on_close = nullptr);
~QRCodeView();
private:
NavigationView& nav_;
QRCodeView(const QRCodeView&) = delete;
QRCodeView(QRCodeView&&) = delete;
QRCodeView& operator=(const QRCodeView&) = delete;
QRCodeView& operator=(QRCodeView&&) = delete;
std::string title() const override { return "QR code"; };
void focus() override;
std::function<void(void)> on_close_ { nullptr };
private:
NavigationView& nav_;
std::function<void(void)> on_close_{nullptr};
QRCodeImage qr_code {
{ 50, 100, 100, 100 }
};
QRCodeImage qr_code{
{50, 100, 100, 100}};
//Text text_qr {
// { 0 * 8, 10 * 16, 32 * 8, 1 * 8 },
// "-"
//};
// Text text_qr {
// { 0 * 8, 10 * 16, 32 * 8, 1 * 8 },
// "-"
// };
Button button_close {
{ 9 * 8, 31 * 8, 12 * 8, 3 * 16 },
"Back"
};
Button button_close{
{9 * 8, 31 * 8, 12 * 8, 3 * 16},
"Back"};
};
} /* namespace ui */