Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
beadandó 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Borostyán József Bálint
beadandó 3
Commits
d77f8aa9
There was an error fetching the commit references. Please try again later.
Commit
d77f8aa9
authored
1 month ago
by
Borostyán József Bálint
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
1ba0e23f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
widget.hpp
+20
-0
20 additions, 0 deletions
widget.hpp
with
20 additions
and
0 deletions
widget.hpp
0 → 100644
+
20
−
0
View file @
d77f8aa9
#ifndef WIDGET_HPP
#define WIDGET_HPP
#include
"graphics.hpp"
class
Widget
{
protected:
int
x
,
y
,
width
,
height
;
bool
selected
;
public:
Widget
(
int
x_
,
int
y_
,
int
w_
,
int
h_
);
virtual
void
draw
()
const
=
0
;
virtual
void
handle
(
genv
::
event
ev
)
=
0
;
virtual
bool
is_selected
(
int
mx
,
int
my
)
const
;
virtual
void
set_focus
(
bool
f
);
virtual
~
Widget
()
{}
};
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment