Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
pub
frama-c
Commits
9a9a307d
Commit
9a9a307d
authored
3 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[ivette] process-level management of theme settings
parent
c407268a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ivette/src/dome/main/dome.ts
+29
-26
29 additions, 26 deletions
ivette/src/dome/main/dome.ts
ivette/src/dome/renderer/themes.tsx
+3
-11
3 additions, 11 deletions
ivette/src/dome/renderer/themes.tsx
with
32 additions
and
37 deletions
ivette/src/dome/main/dome.ts
+
29
−
26
View file @
9a9a307d
...
@@ -85,6 +85,30 @@ export const { DEVEL } = System;
...
@@ -85,6 +85,30 @@ export const { DEVEL } = System;
/** System platform */
/** System platform */
export
const
{
platform
}
=
System
;
export
const
{
platform
}
=
System
;
// --------------------------------------------------------------------------
// --- Native Theme
// --------------------------------------------------------------------------
ipcMain
.
handle
(
'
dome.ipc.theme
'
,
()
=>
{
return
nativeTheme
.
shouldUseDarkColors
?
'
dark
'
:
'
light
'
;
});
nativeTheme
.
on
(
'
updated
'
,
()
=>
{
broadcast
(
'
dome.theme.updated
'
);
});
function
setNativeTheme
(
theme
:
string
|
undefined
)
{
switch
(
theme
)
{
case
'
dark
'
:
case
'
light
'
:
case
'
system
'
:
nativeTheme
.
themeSource
=
theme
;
return
;
default
:
console
.
warn
(
'
[dome] unknown theme
'
,
theme
);
}
}
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --- Settings
// --- Settings
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
...
@@ -208,7 +232,10 @@ function applyStorageSettings(event: IpcMainEvent, args: Patch[]) {
...
@@ -208,7 +232,10 @@ function applyStorageSettings(event: IpcMainEvent, args: Patch[]) {
}
}
function
applyGlobalSettings
(
event
:
IpcMainEvent
,
args
:
Patch
[])
{
function
applyGlobalSettings
(
event
:
IpcMainEvent
,
args
:
Patch
[])
{
applyPatches
(
obtainGlobalSettings
(),
args
);
const
settings
:
Store
=
obtainGlobalSettings
();
applyPatches
(
settings
,
args
);
const
theme
=
settings
[
'
dome-color-theme
'
];
if
(
typeof
(
theme
)
===
'
string
'
)
setNativeTheme
(
theme
);
BrowserWindow
.
getAllWindows
().
forEach
((
w
:
BrowserWindow
)
=>
{
BrowserWindow
.
getAllWindows
().
forEach
((
w
:
BrowserWindow
)
=>
{
const
contents
=
w
.
webContents
;
const
contents
=
w
.
webContents
;
if
(
contents
.
id
!==
event
.
sender
.
id
)
{
if
(
contents
.
id
!==
event
.
sender
.
id
)
{
...
@@ -513,6 +540,7 @@ function showSettingsWindow() {
...
@@ -513,6 +540,7 @@ function showSettingsWindow() {
function
restoreDefaultSettings
()
{
function
restoreDefaultSettings
()
{
GlobalSettings
=
{};
GlobalSettings
=
{};
nativeTheme
.
themeSource
=
'
system
'
;
if
(
DEVEL
)
saveGlobalSettings
();
if
(
DEVEL
)
saveGlobalSettings
();
WindowHandles
.
forEach
((
handle
)
=>
{
WindowHandles
.
forEach
((
handle
)
=>
{
...
@@ -620,28 +648,3 @@ ipcMain.handle(
...
@@ -620,28 +648,3 @@ ipcMain.handle(
);
);
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --- Native Theme
// --------------------------------------------------------------------------
// eslint-disable-next-line @typescript-eslint/no-explicit-any
ipcMain
.
handle
(
'
dome.ipc.theme.setSource
'
,
(
_evt
,
theme
)
=>
{
switch
(
theme
)
{
case
'
dark
'
:
case
'
light
'
:
case
'
system
'
:
nativeTheme
.
themeSource
=
theme
;
return
;
default
:
console
.
warn
(
'
[dome] unknown theme
'
,
theme
);
}
});
ipcMain
.
handle
(
'
dome.ipc.theme.getDefault
'
,
()
=>
{
return
nativeTheme
.
shouldUseDarkColors
?
'
dark
'
:
'
light
'
;
});
nativeTheme
.
on
(
'
updated
'
,
()
=>
{
broadcast
(
'
dome.theme.updated
'
);
});
// --------------------------------------------------------------------------
This diff is collapsed.
Click to expand it.
ivette/src/dome/renderer/themes.tsx
+
3
−
11
View file @
9a9a307d
...
@@ -61,7 +61,7 @@ const NativeThemeUpdated = new Dome.Event('dome.theme.updated');
...
@@ -61,7 +61,7 @@ const NativeThemeUpdated = new Dome.Event('dome.theme.updated');
ipcRenderer
.
on
(
'
dome.theme.updated
'
,
()
=>
NativeThemeUpdated
.
emit
());
ipcRenderer
.
on
(
'
dome.theme.updated
'
,
()
=>
NativeThemeUpdated
.
emit
());
async
function
getNativeTheme
():
Promise
<
ColorTheme
>
{
async
function
getNativeTheme
():
Promise
<
ColorTheme
>
{
const
th
=
await
ipcRenderer
.
invoke
(
'
dome.ipc.theme
.getDefault
'
);
const
th
=
await
ipcRenderer
.
invoke
(
'
dome.ipc.theme
'
);
return
jColorTheme
(
th
);
return
jColorTheme
(
th
);
}
}
...
@@ -72,20 +72,12 @@ async function getNativeTheme(): Promise<ColorTheme> {
...
@@ -72,20 +72,12 @@ async function getNativeTheme(): Promise<ColorTheme> {
export
function
useColorTheme
():
[
ColorTheme
,
(
upd
:
ColorSettings
)
=>
void
]
{
export
function
useColorTheme
():
[
ColorTheme
,
(
upd
:
ColorSettings
)
=>
void
]
{
Dome
.
useUpdate
(
NativeThemeUpdated
);
Dome
.
useUpdate
(
NativeThemeUpdated
);
const
{
result
:
current
}
=
Dome
.
usePromise
(
getNativeTheme
());
const
{
result
:
current
}
=
Dome
.
usePromise
(
getNativeTheme
());
const
[
pref
,
setPref
]
=
Settings
.
useGlobalSettings
(
ColorThemeSettings
);
const
[
pref
,
setTheme
]
=
Settings
.
useGlobalSettings
(
ColorThemeSettings
);
const
setTheme
=
(
upd
:
ColorSettings
):
void
=>
{
setPref
(
upd
);
ipcRenderer
.
invoke
(
'
dome.ipc.theme.setSource
'
,
upd
);
};
return
[
current
??
jColorTheme
(
pref
),
setTheme
];
return
[
current
??
jColorTheme
(
pref
),
setTheme
];
}
}
export
function
useColorThemeSettings
():
State
<
ColorSettings
>
{
export
function
useColorThemeSettings
():
State
<
ColorSettings
>
{
const
[
pref
,
setPref
]
=
Settings
.
useGlobalSettings
(
ColorThemeSettings
);
const
[
pref
,
setTheme
]
=
Settings
.
useGlobalSettings
(
ColorThemeSettings
);
const
setTheme
=
(
upd
:
ColorSettings
):
void
=>
{
setPref
(
upd
);
ipcRenderer
.
invoke
(
'
dome.ipc.theme.setSource
'
,
upd
);
};
return
[
jColorSettings
(
pref
),
setTheme
];
return
[
jColorSettings
(
pref
),
setTheme
];
}
}
...
...
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