Adriaan de Groot
8cf3c217f7
Merge branch 'requirements-checking'
2019-02-25 10:00:43 -05:00
Adriaan de Groot
cece01e3c5
[partition] Simplify next()
2019-02-25 07:59:58 -05:00
Adriaan de Groot
08565b5f17
[libcalamaresui] Remove the signal done() from ViewStep
...
- The signal is emitted, generally from next(), but not actually used.
2019-02-25 07:34:40 -05:00
Adriaan de Groot
fbb513eee3
[partition] Remove artificial delay
...
- The sleep(3) was meant as a debugging aid for the multi-threaded
part of requirements checking.
2019-02-25 06:45:17 -05:00
Adriaan de Groot
40de1bd2eb
[partition] Give requirement entry a description
...
- The description is used in the Details dialog when the
requirements fail. This one should be visible.
2019-02-25 05:12:03 -05:00
Adriaan de Groot
2092ec3c9a
[partition] Drop some re-parenting trickery
...
- Can't re-parent across threads easily
- If device is made by immutableDeviceCopy(), then it's still owned by the
PartitionCoreModule; giving it away to the widget is not a good idea.
2019-02-25 04:36:46 -05:00
Adriaan de Groot
be5abf08dc
Merge pull request #1094 from a-wai/fix-default-fs
...
[partition] Fix default fs
FIXES : #1093
2019-02-22 15:55:44 -05:00
Arnaud Ferraris
74ead4c7ba
[partition] improve filesystem search operation
...
Due to changes to the FileSsytem::typeForName() function, more
processing is needed to deal with locales and different cases.
This is done by refactoring the findFS() function, initially located in
the PartitionViewStep class, and making it available to the whole module.
Additionnally, more checks have been implemented regarding the use of
global storage in the PartitionLayout class, and the filesystem types
now use the correct FileSystem::Type, as requested.
Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
2019-02-22 18:42:16 +01:00
Adriaan de Groot
79c20b8fbd
[partition] Fix user-visible strings
...
- The default window title in the designer file wasn't a good string
to translate. Use one of the titles instanced from elsewhere.
- The window titles set in subclasses were not translatable.
FIXES #1092
2019-02-22 07:03:38 -05:00
Dan Simmons
651b52ead9
Fix spelling typo
2019-02-20 05:00:58 -05:00
Adriaan de Groot
43eae0bc47
Merge branch 'master' into requirements-checking
2019-02-15 00:32:45 +01:00
Adriaan de Groot
6fbc467795
[partition] Reduce Transifex warnings
...
- the string here has no context (no QObject-derived class that
it is called in) so use the static method instead.
2019-02-14 16:08:55 -05:00
Adriaan de Groot
2a8960cd0f
[partition] Ensure combobox pre-selects consistently
...
- Match the selected item in the combobox with a given default,
which should be whatever is selected from the available set of
choices.
2019-02-12 07:30:34 -05:00
Adriaan de Groot
5f20eedb6e
[partition] Use swap-choice member, not the combobox pointer
...
- Store changes to the selected swap-choice when the combobox changes
- Use that member instead of dereferencing the combobox
This avoids nullptr crashes when the combobox isn't even created
(e.g. when there is only one swap choice).
2019-02-12 07:21:35 -05:00
Adriaan de Groot
a4e6d4cd35
[partition] Rename combo box
...
- Too much confusion possible between the different members all
named variations of *SwapChoice*
- Update copyright years, too
2019-02-12 05:40:11 -05:00
Adriaan de Groot
335976e32c
[partition] Improve defaultFS handling
...
- drop the localized comparisons; that's just confusing
- warn when no default FS is set (then use ext4)
- fix case-insensitive fallback; it used fsType, which was
set to Unknown in the for loop.
2019-02-12 05:15:56 -05:00
Adriaan de Groot
b9fa0398c0
[partition] Disable one call to updateButtons()
...
- suggested by @abucodonosor, removing this one call seems
to solve the data race for the device model.
2019-02-11 18:26:45 -05:00
Adriaan de Groot
6316173f1b
[partition] More conservative handling of device pointers
...
- thanks @abucodonosor
2019-02-11 17:45:23 -05:00
Adriaan de Groot
04b4e37bd0
[partition] Don't display unsupported swap styles
...
- Suppress unsupported options while reading the config file.
2019-02-11 09:23:50 -05:00
Adriaan de Groot
0fdc737968
[partition] Fix logging output
...
- Using the assignment-operator just generates blank lines.
- Using QLog with a log-level avoids the cDebug()-style special
handling of warnings and errors (useless here, but may as well
fix code style).
2019-02-11 09:21:43 -05:00
Adriaan de Groot
2fda5957f1
[partition] Complain about unsupported swap choices
2019-02-11 09:06:27 -05:00
Adriaan de Groot
273461a497
[partition] Be verbose about handling osprober results
2019-02-11 05:32:42 -05:00
Adriaan de Groot
2c6ff26aaa
[partition] Reduce warnings
2019-02-06 04:08:21 -05:00
Adriaan de Groot
73c39adf9c
Merge branch 'improve-swap-ui'
2019-01-24 15:20:06 -05:00
Adriaan de Groot
02416578cd
Merge branch 'release-3.2.4'
2019-01-24 11:22:04 -05:00
Adriaan de Groot
b913753831
[partition] No need to re-query the current choice
2019-01-21 08:54:09 -05:00
Adriaan de Groot
aef61a42bc
[partition] Tidy up code
...
- avoid possible nullptr dereference on connect() if no swap choices
- group retranslations together
2019-01-21 08:22:17 -05:00
Adriaan de Groot
24422b19bd
[partition] Idiomatic connect() usage
2019-01-21 08:20:01 -05:00
Adriaan de Groot
fbef117fc8
[partition] Remove unused code
2019-01-21 07:52:23 -05:00
Adriaan de Groot
8ecae75dc8
[partition] Simplify code a little
...
- Document and make pickOne() more correct
- Reduce calls to globalStorage(), it doesn't change
2019-01-21 07:41:47 -05:00
Adriaan de Groot
e85fedfd41
[partition] Drop comment that doesn't apply anymore
2019-01-18 15:57:21 +01:00
Adriaan de Groot
a51a000681
Merge branch 'master' into improve-swap-ui
2019-01-14 15:57:22 +01:00
Adriaan de Groot
bcce704589
Merge branch 'resize-control'
...
FIXES #1062 #1038
2019-01-14 15:31:25 +01:00
Adriaan de Groot
194f693412
[partition] Use new NamedEnum approach
2019-01-11 14:32:45 +01:00
Arnaud Ferraris
5cacc0ddc6
Merge remote-tracking branch 'upstream/master' into partition-layout
2019-01-11 10:03:46 +01:00
Adriaan de Groot
305249976f
Merge pull request #1069 from a-wai/preserve-selected-device
...
Preserve current device when going to manual partitioning and back
2019-01-11 00:08:23 +01:00
Adriaan de Groot
ba63084c7e
[partition] Refactor fstype naming
...
- Use locale "C" for checking filesystem names
- Also check other possibilities and case-insensitive, to
be more forgiving of weird configurations (and localizations)
2019-01-10 23:54:57 +01:00
Arnaud Ferraris
dfb5412c57
[partition] Preserve current device when going to manual partitioning
...
Fixes #1043
Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
2019-01-10 16:28:05 +01:00
Arnaud Ferraris
fcd0e8d362
[partition] Apply partition layout when replacing free space
...
When chosing the "Replace partition" option, free space is not handled
like any partition. In order to apply the custom partition layout in
that case too, we have to modify the code where "replace free space" is
handled.
Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
2019-01-07 17:28:02 +01:00
Arnaud Ferraris
ba673b17ee
[partition] Add configuration option to disable manual partitioning
...
In some cases where a custom partition layout is used, use of this
layout is mandatory (this can be the case when using a read-only rootfs
which is updated by block-cpying an image file to it).
For these cases, the user must not be able to change the partition
layout, therefore we have to disable manual partitioning.
In order to stay consistent with current behaviour, manual partitioning
is still enabled by default. It will only be disabled if the partition
module's config file contains the corresponding option set to "false".
Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
2019-01-07 17:27:40 +01:00
Arnaud Ferraris
2f14a21456
[partition] Apply custom layout when installing "Alongside"
...
When choosing "Install alongside another system", the custom partition
layout is applied to the space freed by resizing the selected partition.
Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
2019-01-07 17:27:12 +01:00
Arnaud Ferraris
74a59ae68a
[partition] Display partition labels when they exist
...
Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
2019-01-07 17:26:53 +01:00
Arnaud Ferraris
b2bf873ede
[partition] Initialize partition layout from config file
...
In order to keep the partition layout during calamares' execution, we
add a PartitionLayout object instance to PartitionCoreModule. This class
will therefore be used to initialize the PartitionLayout object and
interact with it thoughout the program's execution.
When no partition layout is present in the config file, we initialize
the layout with a single ext4 partition mounted on '/', as it was
previously done.
Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
2019-01-07 17:25:39 +01:00
Adriaan de Groot
4973d00ace
[partition] Only create drop-down if there is something to select
...
- Swap choices may be 0 (then choose none), 1 (choose that one)
or more (currently undecided)
2018-12-11 13:52:23 +01:00
Adriaan de Groot
00df8a9fb1
[partition] Remove unused code
...
- Swap choice for replace and alongside will happen much, much later.
2018-12-04 12:21:02 +01:00
Adriaan de Groot
a66ea106d6
[partition] Missing implicit include
2018-12-04 11:40:27 +01:00
Adriaan de Groot
2998c27545
[partition] Use configured swap choices in choice page
2018-12-04 11:35:35 +01:00
Adriaan de Groot
5945e9584d
[partition] Refactor name-to-enum and back for swap choices
2018-12-04 11:15:38 +01:00
Adriaan de Groot
edc6c64657
[partition] Create swap-combo from a set
...
- Alternate way to create swap-combobox, using configuration
values rather than an initializer list.
2018-12-04 11:01:16 +01:00
Adriaan de Groot
988a0a5388
[partition] Changing swap choice also changes preview
...
- When selecting *erase*, you may be able to change the swap
settings. If so, changing swap settings should change the
preview.
2018-12-04 10:34:02 +01:00
Adriaan de Groot
0231619c7c
[partition] Refactor slot for change in action
...
- Let's not go overboard on lambdas,
- Needed for others that also want to update the partitioning preview
2018-12-04 10:22:08 +01:00
Adriaan de Groot
c5d707399d
Merge branch 'fix-swap-ui'
2018-12-03 21:02:10 +01:00
Adriaan de Groot
8144295e98
[partition] Make new partition flags explicit
...
Suggested by aliveafter1000: having a default value, and then
filling in the default in one place it is used and not others,
is weird. Instead of dropping the one use, remove the default
value: partition flags are important enough to be explicit.
2018-11-09 08:25:26 -05:00
Adriaan de Groot
97c9e5bdcd
[partition] Debug-log available file-system types
2018-11-06 06:22:02 -05:00
Adriaan de Groot
463b1441a5
[partition] Be more verbose about default file-system settings
...
- Log the type that is configured
- Document that this is a delicate setting, case-sensitive and
dependent on KPMCore.
2018-11-06 05:54:45 -05:00
Adriaan de Groot
417eeedd9f
[partition] Calamares is spaced-out enough without extra's
2018-10-11 06:35:45 -04:00
Adriaan de Groot
c7645af358
[partition] Translate swap-choice-strings to enum
...
- Handle legacy and modern config, mixed-configs,
- Translate strings to enum values,
- Default and warn as appropriate.
- Doesn't **do** anything with the config, though.
2018-10-11 06:27:39 -04:00
Adriaan de Groot
f7cc571635
Merge branch 'fix-swap-ui' of github.com:calamares/calamares into fix-swap-ui
2018-10-08 16:49:18 -04:00
Adriaan de Groot
3d543e9063
[partition] Refactor to use current config-reading methods
2018-10-09 05:46:12 -04:00
Adriaan de Groot
caa4b8ab53
[partition] Document intention of new-style swap config
2018-10-09 05:30:14 -04:00
Adriaan de Groot
2a61116b3c
[partition] Disable swap choice for replace & alongside
2018-10-08 15:32:02 -04:00
Adriaan de Groot
779542a5d1
Merge branch 'master' into fix-swap-ui
2018-10-08 13:56:28 -04:00
Adriaan de Groot
292bc57523
[partition] Fix build with suitable operator <<
2018-10-03 13:49:52 -04:00
Adriaan de Groot
b38316365e
[partition] Be more verbose about why UI buttons appear
2018-10-03 13:58:50 +02:00
Adriaan de Groot
29bae61610
Merge branch 'master' into fix-swap-ui
2018-10-01 03:21:06 -04:00
Adriaan de Groot
e3bf9fc220
[partition] Fix build with KPMCore <= 3.3.0
...
- Reported by Philip Mueller
2018-09-21 16:19:05 -04:00
Adriaan de Groot
d2f4079a18
[partition] Move partitioning options into a class
...
- As (auto) partitioning grows more options, the parameter
list becomes more unwieldy. Add some structure to it.
2018-09-17 06:42:14 -04:00
Adriaan de Groot
5136021416
[partition] Move SwapChoice to another namespace
...
- The choice of swap needs to be handled in more places,
so make the enum available in the partition module core instead
of just inside the choice page.
2018-09-13 06:29:59 -04:00
Adriaan de Groot
846e496d76
[partition] Tidy includes
2018-09-13 05:50:46 -04:00
Adriaan de Groot
959cd7b224
[partition] Simplify creation of comboboxes for swap choices
2018-09-13 04:45:36 -04:00
Adriaan de Groot
cfa940b35c
[partition] Support translations of swap choices
...
- Introduce enum to indicate what is selected
- Support translations
- Fill selections for erase
2018-09-12 11:18:17 -04:00
Adriaan de Groot
7d0451fe69
[partition] Rename Choice -> InstallChoice
...
- There are more choices to be made (or to come) when partitioning,
so don't take the most generic term for one enum.
2018-09-12 10:16:48 -04:00
Adriaan de Groot
10f7bac2df
[partition] Reorder initialization
2018-09-12 10:05:14 -04:00
Adriaan de Groot
c3f3276188
[partition] Improve presentation of swap options
2018-09-12 09:20:44 -04:00
Adriaan de Groot
dc492b301c
[partition] Drop label on swap-options box
2018-09-12 08:42:21 -04:00
Adriaan de Groot
a791818a65
[partition] Add swap drop-down
...
- This is WIP; the drop-down contents should be customised,
depending on configuration and the state of the device being
installed-to.
2018-09-12 08:18:45 -04:00
Adriaan de Groot
c813375908
[partition] Prepare for swap options
...
- Extend PrettyRadioButton with options (combo-boxes which may
be added later).
2018-09-12 08:09:01 -04:00
Caio Carvalho
01a972c6ea
[partition] Fixing LVM LV name line edit visibility.
2018-08-13 13:05:41 -03:00
Caio Carvalho
b5a2a5bbdd
[partition] Don't show erase button for inactive RAID.
2018-08-13 12:26:00 -03:00
Caio Carvalho
7fd0ad5795
[partition] Disabling partition buttons for inactive RAID.
2018-08-13 09:51:35 -03:00
Adriaan de Groot
bf40f3bd23
Merge branch 'master' into requirements-checking
2018-08-10 12:02:57 -04:00
Adriaan de Groot
5d5feeb0ab
Merge branch 'master' of https://github.com/cjlcarvalho/calamares into lvm-update
2018-06-28 23:48:13 +02:00
Caio Carvalho
589628bb9a
[partition] Removing unnecessary horizontal spacer on Partition Page.
2018-06-26 01:44:35 -03:00
Caio Carvalho
67d9ebbfc0
[partition] Setting revertButton enabled after deactivating VG.
2018-06-26 01:29:57 -03:00
Caio Carvalho
295e14530e
[partition] Adding resizing, deactivating and removing procedures for LVM VGs.
2018-06-26 00:38:52 -03:00
Adriaan de Groot
9d17e7210a
[partition] Change shortcut for "Create" to 'a'
...
Untangle the shortcuts; Create and Cancel had an overlap.
Skip 'r' (Revert all changes) and 'e' (Edit) and settle on
'a' (which might also mean "Add").
FIXES #977
2018-06-18 13:28:35 +02:00
Adriaan de Groot
dd8e53dc22
Copyright: update copyright lines on files touched in 2018
...
Contributions from:
Adriaan de Groot <groot@kde.org>
Gabriel Craciunescu <crazy@frugalware.org>
AlmAck <gluca86@gmail.com>
Andrius Štikonas <andrius@stikonas.eu>
Caio Carvalho <caiojcarvalho@gmail.com>
Raul Rodrigo Segura <raurodse@gmail.com>
2018-06-15 05:59:11 -04:00
Caio
0465cc4214
[partition] Including revert on creation of LVM VGs.
2018-06-08 20:20:05 -03:00
Caio
208d58bcd9
[partition] Including CreateVolumeGroupDialog and fixing some of its GUI issues.
2018-06-07 17:22:22 -03:00
Caio
d15ce56c97
[partition] Initial implementation of VolumeGroupBaseDialog.
2018-06-04 16:31:58 -03:00
Adriaan de Groot
47805209c6
Merge branch 'branding' of https://github.com/raurodse/calamares into raurodse-branding
2018-05-21 11:02:08 -04:00
Raul Rodrigo Segura
1636f665c3
Set Object name to graphical elements to thematize by qss
2018-05-20 16:29:38 +02:00
Raul Rodrigo Segura
4c6f42ecfa
Set Object name to graphical elements to thematize by qss
2018-05-20 16:28:31 +02:00
Adriaan de Groot
90a2e482be
[partition] Check for available partition type before creating
...
- Avoid situation where you make 5 or more primaries in an
MSDOS partition table.
FIXES #953
2018-05-16 10:56:06 -04:00
Adriaan de Groot
bd57f1f2f1
[partition] Fix re-editing a newly created partition
...
- If there is a partition already (newly) created, then pass that
to the dialog so that it can use the setings previously applied
(e.g. mount point and flags).
- This avoids the case where you create or format a partition,
then click on it again to edit it and the previous settings are lost.
2018-05-16 09:14:50 -04:00
Adriaan de Groot
ca03dad67b
[partition] Refactor setting the flags UI
...
- Setup the lsit of flags consistently, by providing the available
and to-be-checked flags.
- In CreatePartitionDialog, assume that ~0 is all the flags.
2018-05-16 09:07:45 -04:00
Adriaan de Groot
4f451eece5
[partition] Refactor getting the checked flags
2018-05-16 08:41:47 -04:00
Adriaan de Groot
950cc9070d
[partition] Rename MountPoints to PartitionDialogHelpers
...
This file is full of helper functions for the partition-editing
dialogs. At first it was just mount-point helper functions,
but there is other functionality that can be refactored.
2018-05-16 08:34:33 -04:00
Adriaan de Groot
0df304b206
[partition] Preserve desired partition flags
...
- Use the desired (future) flags, if set, to initialize the
flags checkboxes. If there are no future flags set, this
returns active flags as before.
- This fixes the situation where editing a partition, changing
flags, then editing it *again* re-starts with the original
flags instead of the modified flags.
2018-05-16 07:19:34 -04:00
Adriaan de Groot
5b4668822d
[partition] Also update combo box index when setting up
...
- Avoids case where you edit a partition with a mountpoint
set; previously, calling setText() would update the text
but leave the selected index unchanged (usually 0), so that
later calling selectedMountPoint() would return empty.
2018-05-16 06:15:33 -04:00
Adriaan de Groot
323d20d1a5
[partition] Avoid sneaking an empty string into the mount points combo
2018-05-15 08:26:01 -04:00
Adriaan de Groot
255a99d714
[partition] Drop now-unneeded debugging
2018-05-15 08:13:15 -04:00
Adriaan de Groot
310555f16b
[partition] Add /srv to standard mount-points list.
2018-05-15 08:06:45 -04:00
Adriaan de Groot
4402198b37
[partition] Centralize setting-of-mountpoint
...
- map empty to the 0'th index
- add new entries as needed
This avoids having selected index 0, but a different text.
2018-05-15 08:01:18 -04:00
Adriaan de Groot
a49c39bb53
[partition] Unmap mount-point special strings
...
- Reverse "(no mount point)" to the empty string
- Provide convenience pointer-taking function
2018-05-15 06:30:18 -04:00
Adriaan de Groot
a4997c4be8
[partition] Convenience for selecting default mount point
...
- map blank to the "(no mount point)" string for UI purposes
2018-05-15 06:13:19 -04:00
Adriaan de Groot
fda2e54e0f
[partition] Refactor filling combobox with moint points
...
- Move to one place which handles the standard mount points
- While here, introduce explicit "(no mount point)" string
into the combo box. This is prep-work for issue #951 .
2018-05-15 05:40:52 -04:00
Caio Carvalho
77d2667b53
[partition] Checking if there is LUKS creation support and if partition is not Extended before enabling encryption in CreatePartitionDialog.
2018-05-08 01:30:41 -03:00
Andrius Štikonas
1b21668bff
[partition] Switch to scoped Device enums.
2018-04-18 23:59:15 +03:00
Adriaan de Groot
c7629182e4
Merge branch 'master' into requirements-checking
2018-03-06 17:06:35 +01:00
Adriaan de Groot
a72bdfac52
Merge branch 'master' into requirements-checking
2018-03-06 14:57:17 +01:00
Adriaan de Groot
3315df5df1
[modules] Use new convenience logging methods across the board
2018-02-13 11:07:12 +01:00
Adriaan de Groot
0b03d56a40
i18n: Massage code to help lupdate understand
2018-02-07 17:43:26 +01:00
Adriaan de Groot
e3b7a2884b
[partition] Relax check with UI-level warning message, too
2018-01-09 11:15:30 -05:00
Adriaan de Groot
05967311de
[partition] Be defensive against no device-device-available.
...
Scenario is this: you have no suitable installation devices on
your system (everything is mounted, or HDD has died), click through
to partition page, where you have all the buttons available, but no
devices in the list. The following actions then cause a crash:
- clicking "back"
- clicking any button
Prevent that:
- you can click "back", but if there is no device selected
nothing happens to the device state (no nullptr deref,
and no crash)
- button code is now more resilient to this scenario
- buttons are hidden until a device is available, so you
can't even click on them to trigger the code.
2018-01-09 06:58:46 -05:00
Adriaan de Groot
1a42b8af41
Merge branch 'kpmcore-3.2'
...
- Bumps requireed KPMCore to 3.3 (in spite of the branch name)
- Cleans up some dependencies
Thanks to Andrius Stikonas.
2018-01-02 13:25:11 +01:00
Adriaan de Groot
762ad54344
Documentation: change http links to GitHub to https
2017-12-20 08:39:09 -05:00
Adriaan de Groot
29e532a790
[partition] Insert annoying 3-sec delay
...
This is intended for testing -- it helps debug where a slow
requirement check blocks the UI.
2017-12-12 07:17:16 -05:00
Adriaan de Groot
4566e53d01
[partition] Delay requirements checking until pmcore is initialized
2017-12-02 12:11:56 -05:00
Adriaan de Groot
ba21a221df
[partition] C++ style
2017-12-02 11:43:20 -05:00
Adriaan de Groot
16fbe4dc8c
[partition] Sample of requirement checking
...
- There should be at least device to select, overwise we can't continue.
The check currently **always** fails, so it blocks installation.
2017-12-02 11:42:56 -05:00
Chantara Tith
2a785bdf89
Disable newPartitionTableButton for LVM device.
2017-11-11 21:47:30 +00:00
Andrius Štikonas
4912d8a6c2
Fix create partition job to work with LVM devices.
2017-10-09 17:31:22 +01:00
Adriaan de Groot
e3e519c06f
Clang: reduce warnings, nullptr, unused parameters
2017-09-21 04:04:01 -04:00
Adriaan de Groot
d23818b27c
Fix code using re-imported spinner
2017-09-19 16:26:26 +02:00
Adriaan de Groot
13807ceabf
Licensing: add self
...
- to all the files I've touched recently
- to (very incomplete) AUTHORS list
Licensing: add license info to top-level CMakeLists.txt
2017-09-19 15:57:25 +02:00
Adriaan de Groot
ca60a7fc16
Clang: warnings--
2017-09-14 07:02:24 -04:00
Adriaan de Groot
9116718448
Clang: warnings-reduction
2017-09-10 15:19:36 -04:00
Adriaan de Groot
31fa9e4251
Clang: fix warnings on partition splitter
...
- initialize all the fields
- member-initialization order
- silence warnings about double<->int
- drop unused parameter to setSplitPartition
2017-09-10 06:17:28 -04:00
Adriaan de Groot
3e5916157f
A mounted partition cannot be resized or replaced
...
- add check for isMounted()
- a device with a mounted partition cannot be (entirely) erased
FIXES #639
2017-09-07 04:55:44 -04:00
Adriaan de Groot
851379628c
Reduce Qt runtime warnings.
...
- deleteLater() doesn't like nullptr (produces a warning, but is harmless)
- reparenting across threads doesn't work, comment on that but leave
it in, since this may be relevant for memory management.
2017-09-07 04:24:08 -04:00
Adriaan de Groot
d5dca07e22
Fix uninitialized values (valgrind report)
2017-08-31 04:13:18 -04:00
Adriaan de Groot
1ea79efce8
Uninitialized value
2017-08-29 14:00:48 -04:00
Adriaan de Groot
7791c3cb19
DeviceInfo: refactor translation of DeviceInfoPage
...
- For Boot and Device info widgets, add a retranslateUi() method,
since the labels change not only in response to translation
events but also UI events.
FIXES #779
2017-08-28 05:44:43 -04:00
Adriaan de Groot
7e66499f36
Refactor check for EFI system.
...
The TODO stands, to delegate this to KPMCore.
2017-08-28 05:36:45 -04:00
Lisa Vitolo
9be15e68b6
Change both size box suffices to MiB.
2017-07-09 18:20:00 +01:00
Lisa Vitolo
925d3a61a7
Add "MB" suffix to the "edit partition" size box.
...
Makes it easier to know which unit Calamares is using when
resizing a partition. The "Create partition" dialog has
it already.
2017-07-09 10:10:04 -04:00
Adriaan de Groot
3c3c0f99f8
C++ trickery, part two: shorten code
2017-07-04 08:42:14 -04:00
Adriaan de Groot
ee4e4dfccc
C++ trickery to make the code shorter to read.
2017-07-03 18:07:18 -04:00
Adriaan de Groot
c0b3f3fe9d
Clang: reduce warnings; make enum-switch explicit
2017-06-28 05:49:53 -04:00
Adriaan de Groot
7ebbcc33b2
Partitionmanager: remove unused code files
2017-06-20 07:23:04 -04:00
Teo Mrnjavac
6545443b24
Documentation++
2017-03-03 12:32:44 +01:00
Teo Mrnjavac
3aebb79d30
Add optional config value neverCreateSwap in partition module.
...
CAL-458 #close The feature has landed in master, please test.
2017-02-09 18:08:47 +01:00
Ramon Buldó
f0b4a21b2d
partition: use always double click to activate a partition tree view item
...
Using activated signal may use single or double click depending on environment settings
2017-02-07 17:58:56 +01:00
Teo Mrnjavac
06b1d4abd2
Don't hardcode /dev/sd* as device path.
2017-02-02 16:59:17 +01:00
Teo Mrnjavac
f4732de975
Always write bootloader path.
2017-01-18 19:38:12 +01:00
Teo Mrnjavac
45adde11e1
Do not write bootloader install path if the system is EFI.
2017-01-18 12:11:25 +01:00
Teo Mrnjavac
a59a79a816
bootloaderInstallPath only applies if !isEfi.
2017-01-12 13:28:34 +01:00
Teo Mrnjavac
f3848cd428
The sender QObject should be in scope so the bootloader path is written.
...
CAL-388
CAL-417
CAL-441
2017-01-10 14:46:07 +01:00
Teo Mrnjavac
c158893b22
Style + translation.
2017-01-04 15:28:09 +01:00
Teo Mrnjavac
2aeadf9682
Better to keep font style manipulation to a minimum.
2017-01-04 15:28:09 +01:00
Teo Mrnjavac
e9f113a6a8
Translate user-visible strings!
2017-01-04 15:28:09 +01:00
Teo Mrnjavac
028f56d94a
Better to keep font style manipulation to a minimum.
2017-01-04 15:28:09 +01:00
Teo Mrnjavac
3ec7c6f881
Style.
2017-01-04 15:28:09 +01:00
Lisa
02abc0d0a7
Merge pull request #276 from shainer/mountpoint
...
Disallow assigning the same mountpoint to two partitions
2016-12-31 18:49:05 +01:00
Teo Mrnjavac
45315e6ae9
Improve debug output for bootloader code path.
2016-12-02 18:36:02 +01:00
shainer
2759529841
Remove current partition's mountpoint from used list.
...
This means that when we edit a partition, we don't consider
its current mountpoint invalid because it is already in-use.
We need to do this for both "edit existing partition" and
"edit a partition that we are still creating".
2016-11-20 23:19:33 +00:00
shainer
349470ae71
Check mountpoints when editing a partition too.
2016-11-20 23:06:03 +00:00
shainer
8c1199df2d
Check first selection of mountpoint too.
...
When opening the dialog.
2016-11-20 23:05:44 +00:00
shainer
f51b05e8aa
Get the mountpoint from PartitionInfo.
...
The Partition object includes the root mountpoint in
the partition mountpoint, which is not what we want.
2016-11-20 22:46:28 +00:00
shainer
c8dbeb5341
Avoid creating a new partition with a used mountpoint.
...
We get the mountpoints already used by other partitions, and
disable the Ok button in the "Create new partition" dialog if
the user selects/writes a mountpoint which is already used.
We are going to do the same in the Edit partition dialog
after testing.
2016-11-20 22:05:55 +00:00
Teo Mrnjavac
83b51a5867
Show warning.
2016-11-17 19:03:24 +01:00
Teo Mrnjavac
17fe2d82f4
Oops.
2016-11-17 18:28:58 +01:00
Teo Mrnjavac
a55bef5d2d
Warn user about encrypted root with unencrypted /boot.
2016-11-17 18:15:37 +01:00
Teo Mrnjavac
6e7dc0b437
Use the target system's boot name in partitioning summary widget.
2016-10-14 15:27:24 +02:00
Teo Mrnjavac
5796b05fda
Allow disabling automated LUKS modes.
2016-09-26 13:14:54 +02:00
Teo Mrnjavac
c316d22b08
Keep an immutable copy for every scanned Device* to avoid rescans.
2016-09-09 11:28:39 +02:00
Chantara Tith
aa10fe982a
API Changes, logicalSectorSize -> logicalSize, totalSectors -> totalLogical.
2016-09-09 11:28:39 +02:00
Andrius Štikonas
9f0ca042fe
Port away from most cases of Q_FOREACH to C++11 ranged for loop.
...
In order to avoid deep copies, Qt containers over which we iterate must be const
The remaining unported cases require qAsConst (Qt 5.7) or std::as_const (C++17)
2016-09-01 16:46:14 +01:00
Teo Mrnjavac
e9da3acd95
Fix EncryptWidget height.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
04ab71bad9
Fix default new partition text.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
9c90a2a500
Useless margins are useless.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
edeee85cd3
Write reuse Home check box string.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
e6f9714f84
Avoid homePartitionPath going out of scope.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
90bb64fb17
Pass current index by value.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
aaf85407fb
Only look for a separate /home partition if a partition was found.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
6c6e4a1f88
Write reuseHome to GlobalStorage.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
8b0b4c73de
Add Q_UNUSED where relevant.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
d44a3d831b
Warning fixes: avoid C-style casts.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
30ff216dea
Warning fix: implicit cast.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
90c06bd733
Warning fixage (init list order, lossy cast, Q_UNUSED).
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
c1e535a8e8
Hide reuse checkbox on action selection change.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
a17f369cee
React to reuse home checkbox by setting /home mount point.
...
Rearranged Replace workflow a bit: onPartitionReplaceSelected is now
the on choice slot, which in turn calls doReplaceSelectedPartition.
onHomeCheckBoxStateChanged also calls doReplaceSelectedPartition if we
need to redo the Replace task with/without a separate home to keep.
m_reuseHomeCheckBox is hidden by default.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
bc345b3ddc
Add "reuse home" check box to .ui.
2016-07-22 16:36:26 +02:00
Teo Mrnjavac
45f6e6c55b
Rearrange asynchronous scan in PartitionCoreModule a bit.
2016-07-19 13:04:00 +02:00
Teo Mrnjavac
2c68802446
Reapply the action choice instead.
2016-06-29 18:46:02 +02:00
Teo Mrnjavac
b2b202d190
Do a full revert.
2016-06-29 18:34:02 +02:00
Teo Mrnjavac
f1a29033a2
Revert PCM before applying Alongside operation.
2016-06-29 18:21:38 +02:00
Teo Mrnjavac
9d4a636a16
Revert "Improve debug output in PartitionBarsView."
...
This reverts commit 9e186190fc
.
2016-06-24 17:38:52 +02:00
Teo Mrnjavac
59f0e9cc2d
Revert "Improve debug output."
...
This reverts commit 3d5ccb2712
.
2016-06-24 17:38:45 +02:00
Teo Mrnjavac
e96c7f95ef
Improve debug output.
2016-06-24 17:15:26 +02:00
Teo Mrnjavac
9888a4e5d3
Only make it dirty if something changes.
2016-06-24 17:06:39 +02:00
Teo Mrnjavac
a96b7c1596
Reset previous spinBox value on resizer widget reset.
2016-06-24 17:00:55 +02:00
Teo Mrnjavac
1f664f1eec
Keep track of previous spinbox value.
2016-06-24 16:58:23 +02:00
Teo Mrnjavac
cd94768850
Revert "Try to work around spinbox dirty status change on apply issue."
...
This reverts commit 9c90d54eda
.
2016-06-24 16:46:56 +02:00
Teo Mrnjavac
9c90d54eda
Try to work around spinbox dirty status change on apply issue.
2016-06-24 16:28:17 +02:00
Teo Mrnjavac
5450a18c85
Copyright.
2016-06-24 16:05:33 +02:00
Teo Mrnjavac
2e173c183f
Do not align partition boundaries unless explicitly requested.
2016-06-24 16:04:48 +02:00
Teo Mrnjavac
9d995f3625
Use length instead of calculating sectors count.
2016-06-24 15:10:20 +02:00
Teo Mrnjavac
4f41cf54a9
Hook up PartitionLabelsView to model.
2016-06-23 10:01:13 +02:00
Teo Mrnjavac
3940e2b09d
Add config option for always showing partition labels.
2016-06-23 10:00:55 +02:00
Teo Mrnjavac
5520972e5a
Add labels view to manual partitioning page.
2016-06-23 10:00:00 +02:00
Teo Mrnjavac
3d5ccb2712
Improve debug output.
2016-06-23 09:48:03 +02:00
Teo Mrnjavac
9e186190fc
Improve debug output in PartitionBarsView.
2016-06-22 18:18:53 +02:00
Teo Mrnjavac
bea6b5f17e
Stupid compilers are stupid.
2016-06-13 15:13:26 +02:00
Teo Mrnjavac
8ff943e5b5
Improve check for encryption status.
2016-06-10 17:52:54 +02:00
Teo Mrnjavac
7a03dc102d
Update fields when the default filesystem is chosen.
2016-06-10 16:05:34 +02:00
Teo Mrnjavac
fe107ac762
Obey default FS type setting in EditExistingPartitionDialog.
2016-06-10 15:41:53 +02:00
Teo Mrnjavac
395fb340b7
Make the Create Partition dialog obey the default FS type setting.
2016-06-10 15:37:11 +02:00
Teo Mrnjavac
a00ebc01e7
Use EncryptWidget for relevant partition types in CreatePartitionDialog.
2016-06-10 15:22:40 +02:00
Teo Mrnjavac
d75d5c76fe
Add EncryptWidget to CreatePartitionDialog.ui.
2016-06-10 15:22:40 +02:00
Teo Mrnjavac
99e719882f
Add setText/reset to EncryptWidget, and fix tooltip string.
2016-06-10 15:22:40 +02:00
Teo Mrnjavac
18742d2afd
Ignore encrypt widget if the choice is Manual.
2016-06-10 15:22:40 +02:00
Teo Mrnjavac
f5ff716369
Make everything obey the default filesystem type setting.
2016-06-10 15:22:21 +02:00
Teo Mrnjavac
498af8deef
Add defaultFileSystemType to settings.
2016-06-10 15:08:24 +02:00
Teo Mrnjavac
936e7fab7c
Initial support for Alongside install with LUKS.
2016-06-07 17:35:39 +02:00
Teo Mrnjavac
fd2d24d650
Always show encrypt widget for Replace.
2016-06-03 17:56:31 +02:00
Teo Mrnjavac
4113207e00
Fix next status handling in alongside and replace.
2016-06-03 17:55:14 +02:00
Teo Mrnjavac
e84108e234
Add encryption support in PartitionActions::doReplacePartition.
2016-06-03 16:39:28 +02:00
Teo Mrnjavac
6cd1bf6b3d
Initial work on having the Replace feature obey the encryption setting.
2016-06-02 18:29:17 +02:00
Teo Mrnjavac
c9fac9bc5c
Manage PCM loading with QtConcurrent.
2016-05-26 15:35:24 +02:00
Teo Mrnjavac
0666fb4977
Defer PartitionCoreModule initialization so it doesn't block startup.
2016-05-26 15:08:37 +02:00
Teo Mrnjavac
a4ab8dad46
Hide encryption widget if not Erase.
2016-05-18 07:22:13 +02:00
Teo Mrnjavac
60dcba8735
Update next state slightly later.
2016-05-17 11:34:30 +02:00
Chantara Tith
a25a0ffa2c
Update PartitionPage.cpp
...
increase readability.
2016-05-14 02:29:56 +07:00
Teo Mrnjavac
2050ce97d7
Merge pull request #241 from tctara/master
...
Disk selections in partitioner are not sticky[CAL-361]
2016-05-13 19:44:33 +02:00
Chantara Tith
625bbb6a4b
Disk selections in partitioner are not sticky
2016-05-13 19:26:03 +07:00
Teo Mrnjavac
b792ea0216
Rebuild autopartition proposal when encryption choice changes.
2016-05-06 18:59:51 +02:00
Teo Mrnjavac
0cc9560a99
Hook up EncryptWidget in ChoicePage, plus improve next status handling.
2016-05-06 18:59:51 +02:00
Teo Mrnjavac
6e92a04320
Say hello to EncryptWidget.
2016-05-06 18:59:51 +02:00
Teo Mrnjavac
dacb8f2a94
Make sure we don't hide actions based on osprober.
2016-03-18 12:28:54 +01:00
Chantara Tith
fd8c131b26
implement free-space partition replace install
2016-03-18 17:09:50 +07:00
Teo Mrnjavac
83d440f37e
Add note.
2016-03-10 13:16:18 +01:00
Teo Mrnjavac
055ff5533e
Fixup strings.
2016-03-09 13:34:27 +01:00
Teo Mrnjavac
fb5b48528b
Move ESP check to onLeave().
2016-03-09 13:21:07 +01:00
Teo Mrnjavac
0c7b7ed089
Warn the user if going ahead from manual partitioning without ESP.
2016-03-09 12:54:59 +01:00
Teo Mrnjavac
49eea234ed
Hide bootloader chooser on EFI.
2016-03-09 12:54:16 +01:00
Teo Mrnjavac
182ff03e04
Update createPartition call.
2016-03-08 16:26:20 +01:00
Teo Mrnjavac
3fa7318a37
Do set flags after showing dialog.
2016-03-08 12:50:45 +01:00
Teo Mrnjavac
5a134eb708
Copyright headers.
2016-03-08 12:50:45 +01:00
Teo Mrnjavac
ada0a080fc
Add flags setting support when creating a partition.
2016-03-08 12:50:45 +01:00
Teo Mrnjavac
b83e91b951
Add flags ui to edit partition dialog.
2016-03-08 12:50:45 +01:00
Teo Mrnjavac
06ebf69afe
Initialize all members (fix Coverity defect 98200).
2016-02-26 14:02:22 +01:00
Teo Mrnjavac
7e89e67059
Initialize all members (fix Coverity defect 98206).
2016-02-26 13:39:41 +01:00
Teo Mrnjavac
749a740ffa
Ensure the resizing items aren't null (fix Coverity defect 121862).
2016-02-26 13:13:01 +01:00
Teo Mrnjavac
a0ac9d9f07
Don't dereference nullptr (fix Coverity defect 121863).
2016-02-26 13:00:58 +01:00
Teo Mrnjavac
53741f0d36
Initialize all members in ctor (fix Coverity defect 122658).
2016-02-26 13:00:58 +01:00
Teo Mrnjavac
1e3e1d22bb
Fix build.
2016-02-23 14:43:12 +01:00
Teo Mrnjavac
3c8aee7b5e
Add resizing state flag to Splitter items.
...
New iterator for Splitter items.
Use std::function instead of templates for type safety.
2016-02-23 10:50:48 +01:00
Teo Mrnjavac
bafaa6a225
Keep Splitter items on the stack.
2016-02-22 18:51:44 +01:00