Skip to content

Commit

Permalink
Added beige switch to theme selection dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Jul 13, 2024
1 parent 6995526 commit 921773e
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 3 deletions.
9 changes: 9 additions & 0 deletions app/src/main/java/eu/faircode/email/FragmentDialogTheme.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public class FragmentDialogTheme extends FragmentDialogBase {
private TextView tvYou;
private RadioGroup rgThemeOptions;
private TextView tvSystem;
private SwitchCompat swBeige;
private SwitchCompat swBlack;
private SwitchCompat swHtmlLight;
private SwitchCompat swComposerLight;
Expand Down Expand Up @@ -97,6 +98,8 @@ public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
final Context context = getContext();
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
String theme = prefs.getString("theme", "blue_orange_system");
boolean cards = prefs.getBoolean("cards", true);
boolean beige = prefs.getBoolean("beige", true);
boolean default_light = prefs.getBoolean("default_light", false);
boolean composer_light = prefs.getBoolean("composer_light", false);
boolean debug = prefs.getBoolean("debug", false);
Expand All @@ -109,6 +112,7 @@ public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
swReverse = dview.findViewById(R.id.swReverse);
rgThemeOptions = dview.findViewById(R.id.rgThemeOptions);
tvSystem = dview.findViewById(R.id.tvSystem);
swBeige = dview.findViewById(R.id.swBeige);
swBlack = dview.findViewById(R.id.swBlack);
swHtmlLight = dview.findViewById(R.id.swHtmlLight);
swComposerLight = dview.findViewById(R.id.swComposerLight);
Expand Down Expand Up @@ -173,6 +177,8 @@ else if (dark || black)
else
rgThemeOptions.check(R.id.rbThemeLight);

swBeige.setChecked(beige);
swBeige.setVisibility(cards ? View.VISIBLE : View.GONE);
swBlack.setChecked(black);
swHtmlLight.setChecked(default_light);
swComposerLight.setChecked(composer_light);
Expand Down Expand Up @@ -304,6 +310,7 @@ public void onClick(DialogInterface dialog, int which) {
boolean reverse = (swReverse.isEnabled() && swReverse.isChecked());
boolean dark = (rgThemeOptions.isEnabled() && optionId == R.id.rbThemeDark);
boolean system = (rgThemeOptions.isEnabled() && optionId == R.id.rbThemeSystem);
boolean beige = swBeige.isChecked();
boolean black = (swBlack.isEnabled() && swBlack.isChecked());

SharedPreferences.Editor editor = prefs.edit();
Expand Down Expand Up @@ -379,6 +386,8 @@ else if (checkedRadioButtonId == R.id.rbThemeBlackOrWhite) {
(black ? "_black" : dark ? "_dark" : "_light")).apply();
}

editor.putBoolean("beige", beige);

editor.putBoolean("default_light", swHtmlLight.isChecked());
editor.putBoolean("composer_light", swComposerLight.isChecked());

Expand Down
12 changes: 11 additions & 1 deletion app/src/main/res/layout-v31/dialog_theme.xml
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,16 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/rgThemeOptions" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/swBeige"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:text="@string/title_advanced_cards_beige"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSystem" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/swBlack"
android:layout_width="0dp"
Expand All @@ -374,7 +384,7 @@
android:text="@string/title_setup_theme_black_background"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSystem" />
app:layout_constraintTop_toBottomOf="@id/swBeige" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/swHtmlLight"
Expand Down
12 changes: 11 additions & 1 deletion app/src/main/res/layout-v34/dialog_theme.xml
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,16 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/rgThemeOptions" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/swBeige"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:text="@string/title_advanced_cards_beige"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSystem" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/swBlack"
android:layout_width="0dp"
Expand All @@ -442,7 +452,7 @@
android:text="@string/title_setup_theme_black_background"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSystem" />
app:layout_constraintTop_toBottomOf="@id/swBeige" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/swHtmlLight"
Expand Down
12 changes: 11 additions & 1 deletion app/src/main/res/layout/dialog_theme.xml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,16 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/rgThemeOptions" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/swBeige"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:text="@string/title_advanced_cards_beige"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSystem" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/swBlack"
android:layout_width="0dp"
Expand All @@ -191,7 +201,7 @@
android:text="@string/title_setup_theme_black_background"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSystem" />
app:layout_constraintTop_toBottomOf="@id/swBeige" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/swHtmlLight"
Expand Down

0 comments on commit 921773e

Please sign in to comment.