Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
orbutils
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
Container Registry
Model registry
Operate
Environments
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
redox-os
orbutils
Commits
f7ed2ec4
Commit
f7ed2ec4
authored
8 years ago
by
Erlend Langseth
Browse files
Options
Downloads
Patches
Plain Diff
Less magic numbers in orblogin. Resize login key.
parent
644203b5
No related branches found
No related tags found
1 merge request
!25
orblogin: Less magic numbers, smaller login button
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/orblogin/main.rs
+25
-19
25 additions, 19 deletions
src/orblogin/main.rs
with
25 additions
and
19 deletions
src/orblogin/main.rs
+
25
−
19
View file @
f7ed2ec4
...
@@ -33,14 +33,20 @@ pub fn main() {
...
@@ -33,14 +33,20 @@ pub fn main() {
let
_
=
issue_file
.read_to_string
(
&
mut
issue_string
);
let
_
=
issue_file
.read_to_string
(
&
mut
issue_string
);
}
}
const
MARGIN
:
u32
=
8
;
const
TEXT_HEIGHT
:
u32
=
16
;
const
INPUT_HEIGHT
:
u32
=
28
;
let
issue
=
issue_string
.trim
();
let
issue
=
issue_string
.trim
();
let
issue_height
=
issue
.lines
()
.count
()
as
u32
*
TEXT_HEIGHT
;
const
WINDOW_WIDTH
:
u32
=
576
;
let
window_height
:
u32
=
148
+
issue_height
+
if
issue_height
>
0
{
20
}
else
{
0
};
let
issue_height
=
issue
.lines
()
.count
()
as
u32
*
16
;
let
window_height
=
148
+
issue_height
+
if
issue_height
>
0
{
20
}
else
{
0
};
let
(
width
,
height
)
=
orbclient
::
get_display_size
()
.expect
(
"launcher: failed to get display size"
);
let
(
width
,
height
)
=
orbclient
::
get_display_size
()
.expect
(
"launcher: failed to get display size"
);
let
mut
window
=
Window
::
new_flags
(
let
mut
window
=
Window
::
new_flags
(
Rect
::
new
((
width
as
i32
-
576
)
/
2
,
(
height
as
i32
-
window_height
as
i32
)
/
2
,
576
,
window_height
),
Rect
::
new
((
width
as
i32
-
WINDOW_WIDTH
as
i32
)
/
2
,
(
height
as
i32
-
window_height
as
i32
)
/
2
,
WINDOW_WIDTH
,
window_height
),
"Orbital Login"
,
"Orbital Login"
,
&
[
WindowFlag
::
Unclosable
]
&
[
WindowFlag
::
Unclosable
]
);
);
...
@@ -51,8 +57,8 @@ pub fn main() {
...
@@ -51,8 +57,8 @@ pub fn main() {
let
label
=
Label
::
new
();
let
label
=
Label
::
new
();
label
.text
(
issue
)
label
.text
(
issue
)
.text_offset
(
6
,
6
)
.text_offset
(
6
,
6
)
.position
(
8
,
y
)
.position
(
MARGIN
as
i32
,
y
)
.size
(
560
,
issue_height
+
12
);
.size
(
WINDOW_WIDTH
-
MARGIN
*
2
,
issue_height
+
12
);
//TODO: Put inset color into theme
//TODO: Put inset color into theme
label
.bg
.set
(
orbclient
::
Color
{
data
:
0xFFEFF1F2
});
label
.bg
.set
(
orbclient
::
Color
{
data
:
0xFFEFF1F2
});
label
.border
.set
(
true
);
label
.border
.set
(
true
);
...
@@ -64,37 +70,37 @@ pub fn main() {
...
@@ -64,37 +70,37 @@ pub fn main() {
let
label
=
Label
::
new
();
let
label
=
Label
::
new
();
label
.text
(
"Username"
)
label
.text
(
"Username"
)
.position
(
8
,
y
)
.position
(
MARGIN
as
i32
,
y
)
.size
(
560
,
16
);
.size
(
WINDOW_WIDTH
-
MARGIN
*
2
,
TEXT_HEIGHT
);
window
.add
(
&
label
);
window
.add
(
&
label
);
y
+=
16
;
y
+=
TEXT_HEIGHT
as
i32
;
let
user_text_box
=
TextBox
::
new
();
let
user_text_box
=
TextBox
::
new
();
user_text_box
.position
(
8
,
y
)
user_text_box
.position
(
MARGIN
as
i32
,
y
)
.size
(
560
,
28
)
.size
(
WINDOW_WIDTH
-
MARGIN
*
2
,
INPUT_HEIGHT
)
.text_offset
(
6
,
6
)
.text_offset
(
6
,
6
)
.grab_focus
(
true
);
.grab_focus
(
true
);
user_text_box
.border_radius
.set
(
2
);
user_text_box
.border_radius
.set
(
2
);
window
.add
(
&
user_text_box
);
window
.add
(
&
user_text_box
);
y
+=
2
8
;
y
+=
INPUT_HEIGHT
as
i3
2
;
y
+=
8
;
y
+=
8
;
let
label
=
Label
::
new
();
let
label
=
Label
::
new
();
label
.text
(
"Password"
)
label
.text
(
"Password"
)
.position
(
8
,
y
)
.position
(
MARGIN
as
i32
,
y
)
.size
(
560
,
16
);
.size
(
WINDOW_WIDTH
-
MARGIN
*
2
,
TEXT_HEIGHT
);
window
.add
(
&
label
);
window
.add
(
&
label
);
y
+=
16
;
y
+=
TEXT_HEIGHT
as
i32
;
let
pass_text_box
=
TextBox
::
new
();
let
pass_text_box
=
TextBox
::
new
();
pass_text_box
.position
(
8
,
y
)
pass_text_box
.position
(
MARGIN
as
i32
,
y
)
.size
(
560
,
28
)
.size
(
WINDOW_WIDTH
-
MARGIN
*
2
,
INPUT_HEIGHT
)
.text_offset
(
6
,
6
)
.text_offset
(
6
,
6
)
.mask_char
(
Some
(
'*'
));
.mask_char
(
Some
(
'*'
));
pass_text_box
.border_radius
.set
(
2
);
pass_text_box
.border_radius
.set
(
2
);
window
.add
(
&
pass_text_box
);
window
.add
(
&
pass_text_box
);
y
+=
2
8
;
y
+=
INPUT_HEIGHT
as
i3
2
;
// Pressing enter in user text box will transfer focus to password text box
// Pressing enter in user text box will transfer focus to password text box
{
{
...
@@ -126,8 +132,8 @@ pub fn main() {
...
@@ -126,8 +132,8 @@ pub fn main() {
let
pass_lock
=
pass_lock
.clone
();
let
pass_lock
=
pass_lock
.clone
();
let
window_login
=
&
mut
window
as
*
mut
Window
;
let
window_login
=
&
mut
window
as
*
mut
Window
;
let
button
=
Button
::
new
();
let
button
=
Button
::
new
();
button
.position
(
8
,
y
)
button
.position
(
MARGIN
as
i32
,
y
)
.size
(
5
60
,
28
)
.size
(
5
5
,
INPUT_HEIGHT
)
.text
(
"Login"
)
.text
(
"Login"
)
.text_offset
(
6
,
6
)
.text_offset
(
6
,
6
)
.on_click
(
move
|
_button
:
&
Button
,
_point
:
Point
|
{
.on_click
(
move
|
_button
:
&
Button
,
_point
:
Point
|
{
...
...
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