mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-04 10:41:08 +02:00
adding the settings item for moving undone checklist items
This commit is contained in:
parent
970f641854
commit
bf3f02461d
@ -38,6 +38,7 @@ class SettingsActivity : SimpleActivity() {
|
|||||||
setupMonospacedFont()
|
setupMonospacedFont()
|
||||||
setupShowKeyboard()
|
setupShowKeyboard()
|
||||||
setupShowNotePicker()
|
setupShowNotePicker()
|
||||||
|
setupMoveUndoneChecklistItems()
|
||||||
setupShowWordCount()
|
setupShowWordCount()
|
||||||
setupEnableLineWrap()
|
setupEnableLineWrap()
|
||||||
setupFontSize()
|
setupFontSize()
|
||||||
@ -130,6 +131,14 @@ class SettingsActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun setupMoveUndoneChecklistItems() {
|
||||||
|
settings_move_undone_checklist_items.isChecked = config.moveUndoneChecklistItems
|
||||||
|
settings_move_undone_checklist_items_holder.setOnClickListener {
|
||||||
|
settings_move_undone_checklist_items.toggle()
|
||||||
|
config.moveUndoneChecklistItems = settings_move_undone_checklist_items.isChecked
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun setupShowWordCount() {
|
private fun setupShowWordCount() {
|
||||||
settings_show_word_count.isChecked = config.showWordCount
|
settings_show_word_count.isChecked = config.showWordCount
|
||||||
settings_show_word_count_holder.setOnClickListener {
|
settings_show_word_count_holder.setOnClickListener {
|
||||||
|
@ -76,4 +76,8 @@ class Config(context: Context) : BaseConfig(context) {
|
|||||||
var lastCreatedNoteType: Int
|
var lastCreatedNoteType: Int
|
||||||
get() = prefs.getInt(LAST_CREATED_NOTE_TYPE, TYPE_TEXT)
|
get() = prefs.getInt(LAST_CREATED_NOTE_TYPE, TYPE_TEXT)
|
||||||
set(lastCreatedNoteType) = prefs.edit().putInt(LAST_CREATED_NOTE_TYPE, lastCreatedNoteType).apply()
|
set(lastCreatedNoteType) = prefs.edit().putInt(LAST_CREATED_NOTE_TYPE, lastCreatedNoteType).apply()
|
||||||
|
|
||||||
|
var moveUndoneChecklistItems: Boolean
|
||||||
|
get() = prefs.getBoolean(MOVE_UNDONE_CHECKLIST_ITEMS, false)
|
||||||
|
set(moveUndoneChecklistItems) = prefs.edit().putBoolean(MOVE_UNDONE_CHECKLIST_ITEMS, moveUndoneChecklistItems).apply()
|
||||||
}
|
}
|
||||||
|
@ -30,6 +30,7 @@ const val LAST_USED_SAVE_PATH = "last_used_save_path"
|
|||||||
const val ENABLE_LINE_WRAP = "enable_line_wrap"
|
const val ENABLE_LINE_WRAP = "enable_line_wrap"
|
||||||
const val USE_INCOGNITO_MODE = "use_incognito_mode"
|
const val USE_INCOGNITO_MODE = "use_incognito_mode"
|
||||||
const val LAST_CREATED_NOTE_TYPE = "last_created_note_type"
|
const val LAST_CREATED_NOTE_TYPE = "last_created_note_type"
|
||||||
|
const val MOVE_UNDONE_CHECKLIST_ITEMS = "move_undone_checklist_items"
|
||||||
|
|
||||||
// gravity
|
// gravity
|
||||||
const val GRAVITY_LEFT = 0
|
const val GRAVITY_LEFT = 0
|
||||||
|
@ -338,6 +338,29 @@
|
|||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/settings_move_undone_checklist_items_holder"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="@dimen/medium_margin"
|
||||||
|
android:background="?attr/selectableItemBackground"
|
||||||
|
android:paddingLeft="@dimen/normal_margin"
|
||||||
|
android:paddingTop="@dimen/activity_margin"
|
||||||
|
android:paddingRight="@dimen/normal_margin"
|
||||||
|
android:paddingBottom="@dimen/activity_margin">
|
||||||
|
|
||||||
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
||||||
|
android:id="@+id/settings_move_undone_checklist_items"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="@null"
|
||||||
|
android:clickable="false"
|
||||||
|
android:paddingStart="@dimen/medium_margin"
|
||||||
|
android:text="@string/move_undone_checklist_items"
|
||||||
|
app:switchPadding="@dimen/medium_margin"/>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:id="@+id/saving_divider"
|
android:id="@+id/saving_divider"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user