Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
lunokjod committed Sep 18, 2024
1 parent c78366f commit 33b9706
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/LuIDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

#include "../UI/AppLuITemplate.hpp"
#include "LuiDialog.hpp"
#include "LuIDialog.hpp"
#include "../UI/controls/XBM.hpp"
#include "../resources.hpp"

Expand Down
38 changes: 38 additions & 0 deletions src/app/LuIDialog.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
//
// LunokWatch, a open source smartwatch software
// Copyright (C) 2022,2023 Jordi Rubió <[email protected]>
// This file is part of LunokWatch.
//
// LunokWatch is free software: you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free Software
// Foundation, either version 3 of the License, or (at your option) any later
// version.
//
// LunokWatch is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
// LunokWatch. If not, see <https://www.gnu.org/licenses/>.
//

#ifndef __LUNOKIOT__APPLICATION__LUI_DIALOG__
#define __LUNOKIOT__APPLICATION__LUI_DIALOG__

#include "../UI/AppLuITemplate.hpp"
#include "../UI/controls/Button.hpp"
#include "../UI/controls/Text.hpp"
#include "../UI/controls/base/Container.hpp"

class LuIDialogApplication : public TemplateLuIApplication {
public:
LuIDialogApplication();
const char *AppName() override { return "LuI Dialog"; };
LuI::Text * dialogContents;
LuI::Button *noButton;
LuI::Button *yesButton;
LuI::Container * screen;
};

#endif

0 comments on commit 33b9706

Please sign in to comment.