491 Commits (d592a5bb947ee50b74a39c2d9d979c9653d2d1c8)

Author SHA1 Message Date
Adriaan de Groot 97a45db4bf [libcalamaresui] Reset font height when changing size
- defaultFontHeight() caches the result; clear cache
   when changing the default size, even though this happens
   only once in the current codebase.
7 years ago
Adriaan de Groot bb5ac0326d [libcalamaresui] Improve layout of "blank" view step 7 years ago
Adriaan de Groot 9918dfb95f [libcalamaresui] Reporting on failures
- Provide information on failed modules
 - Disallow further progress when configuration is borked
7 years ago
Adriaan de Groot 3e24c3c58f [libcalamaresui] Provide standardised large font 7 years ago
Adriaan de Groot 8b406cac9b [libcalamaresui] Improve module loading
- Add a TODO for allowing modules to come from somewhere other
   than the module loader (this would allow "internal" modules
   that are always present)
 - Warnings are warnings
7 years ago
Raul Rodrigo Segura d61b32aba6 Add configuration values into pythonqt modules 7 years ago
Adriaan de Groot 35124c149e [libcalamaresui] Drop the 'goodbye' message 7 years ago
Adriaan de Groot a40c36ef49 [libcalamaresui] Report on failed module loading
- Collect the failed modules, instead of bailing out on the first one
   (this also prevents crashes caused by quit() called from a timer).
 - Introduce a slot to report on failed module loading (no UI yet).
7 years ago
Adriaan de Groot 1999e4e5c2 [libcalamaresui] Error out consistently when module loading fails
- Some module-loading failures were ignored and produce only a
   warning, instead of erroring out.
7 years ago
Adriaan de Groot dccf6f16f5 [libcalamaresui] Lambdas are fun, but not always the solution 7 years ago
Adriaan de Groot a626e52bf3 [libcalamares] Introduce more descriptive type name 7 years ago
Adriaan de Groot b66d4856e7 [libcalamaresui] Use modern C++ for (auto)deleting failed modules 7 years ago
Adriaan de Groot eddee7d76a [libcalamaresui] No point in isLoaded() being virtual. 7 years ago
Adriaan de Groot a04915e6fa [libcalamaresui] Add 'emergency' concept to modules. 7 years ago
Adriaan de Groot cdadc2f003 [libcalamares] Improve error logging during module loading 7 years ago
Adriaan de Groot fdda0e14aa [libcalamaresui] Improve explainYamlException
- overloads for common kinds of label
 - improve error reporting when reading settings and branding files
7 years ago
Adriaan de Groot e5ca8e091f [libcalamaresui] Use refactored loadYaml 7 years ago
Adriaan de Groot f26ac63c07 [libcalamaresui] Make Python code const
- This is always loaded into the Python context, so it may as well
   be done only once.
7 years ago
Adriaan de Groot 2413180c67 Branding: update copyright notices 7 years ago
Adriaan de Groot 5bcfb32cf5 Branding: move the branding stylesheet to the Branding class 7 years ago
Adriaan de Groot 975004fc63 [libcalamaresui] Document accessors in Branding
- document accessors
 - put all path and directory accessors together
 - make simple accessors inline
 - rename "pathprefix" to "directory" to be consistent with others
7 years ago
bill auger b6673f6324 move thisModule->isLoaded assert to after it's warning message 7 years ago
Adriaan de Groot 2da09f7648 [libcalamaresui] Fix build
- Include all headers for types that need to be fully-defined
   (e.g. return types). This guards against uses in contexts where
   those headers have not been implicitly or previously included.

FIXES #948
7 years ago
Adriaan de Groot 4d459f7fc0 [libcalamares] Move non-UI stuff from libcalamaresui
- Settings is just a settings class, no UI involved, so
   move to libcalamares where it can be used also from
   system helpers.
 - YAML utilities are useful at a lower level of the stack, too.
7 years ago
Adriaan de Groot 032b33f56f [libcalamaresui] Improve logging.
- Put the (constant) 'Calamares will now quit' on its own debug line.
 - Tell the user what the search paths are if a module is not found
   (prompted by a mis-configuration in a Neon live image).
7 years ago
Adriaan de Groot 240efd30f1 [libcalamares] Add support for formatted, table-like output
- Use DebugRow for one-row-at-a-time output with continuations.
 - Use DebugList for one-item-per-line with continuations.
 - Use DebugMap for one-row-at-a-time output of a QVariantMap.
7 years ago
Adriaan de Groot 6bb72d173d [libcalamares] Drop generic cLog()
- Use cWarning or cError() for errors
 - Use cDebug(level) for other uses (but there aren't any)
7 years ago
Adriaan de Groot 3e30bb682e [libcalamaresui] Use cError() for logging errors, not cLog() 7 years ago
Adriaan de Groot f8bc195fb4 [libcalamaresui] Improve warning when branding has no translation 7 years ago
Adriaan de Groot c7629182e4 Merge branch 'master' into requirements-checking 7 years ago
Adriaan de Groot a72bdfac52 Merge branch 'master' into requirements-checking 7 years ago
Adriaan de Groot 09f30194d7 CMake: revert un-versioning of libcalamares*.so
The install-bits branch commit 83639b182b
dropped .so-versioning for libcalamares and the creation of the Python-
support symlink. This broke KDE Neon dev-unstable because the embedded
Python can no longer find libcalamares.

Installing unversioned .so's straight to LIBDIR is also not a good thing
(according to Debian), so revert to the original scheme with versioned
.so and a Python-support symlink.

Medium-term fix is to install unversioned straight into LIBDIR/calamares
and fix up the RPATH for the executable.
7 years ago
Adriaan de Groot db0c1ffd6d CMake: just install unversioned .so
- Applies to libcalamares and libcalamaresui.so, install with no
   version, just the bare .so. Since Calamares doesn't do versioning
   anyway, and its plugins should be re-compiled for any change,
   putting them in lib as unversioned .so's should make Calamares
   happy and silence lintian.
7 years ago
Adriaan de Groot 83639b182b CMake: try installing outside of regular lib/
- Install unversioned libraries
 - Install to lib/calamares instead of directly to lib/
7 years ago
Adriaan de Groot 958aee1d41 [libcalamaresui] Switch text on 'next' button
- If the next step will be an install-step (e.g. hit the optional
   confirmation step) then change the text on the 'next' button to
   'install'.
 - Do a little refactoring to make that more pleasant.

FIXES #905
7 years ago
Adriaan de Groot 3ae126f589 [modules] Use cError() as well
- Switch KPMHelpers to using Calamares logging instead of qDebug()
7 years ago
Adriaan de Groot 60f440f72b [libcalamaresui] Use new convenience logging methods
- Remove a few confusing Q_FUNCINFO
7 years ago
Adriaan de Groot 9c9486bb78 [libcalamares] When ViewManager is destroyed, reset instance pointer 7 years ago
Adriaan de Groot 845986d48f [libcalamaresui] Mark virtual QObject destructors override 7 years ago
Adriaan de Groot 308441ee3a Merge branch '3.1.x-stable' 7 years ago
Adriaan de Groot 41e6f0e06c [calamares] Allow WM close button
- remove hide-close-button hack
 - refactor code in viewmanager for confirming quit
 - hook up confirm-and-quit to WM close button
 - also works for alt-F4 and other quit methods
 - while here, update copyright year

FIXES #870
7 years ago
Adriaan de Groot 762ad54344 Documentation: change http links to GitHub to https 7 years ago
Adriaan de Groot b6fed964ce [libcalamaresui] Defer requirements checking of ViewModules to their ViewSteps 7 years ago
Adriaan de Groot 27b921bde1 [libcalamaresui] Move requirements information out of welcome module.
- Move type and rename it; put in Calamares namespace
 - Emit signals from the viewmanager as results come in
 - Remove state changing from welcome view step based on its internal
   requirements checking (for now this breaks progressing past the
   welcome page)
 - Log checking of the requirements
7 years ago
Adriaan de Groot 24e04645b6 [libcalamaresui] Stub requirements checking.
Introduce a method checkRequirements() into the module system so that
individual modules can do their own checking (as opposed to stuffing
it all into the welcome module).
7 years ago
Adriaan de Groot 5a07f6ef8a Merge branch 'master' into requirements-checking 7 years ago
Adriaan de Groot 65cf28b716 [libcalamaresui] Provide access to the breeze SVGs 7 years ago
Adriaan de Groot fbe1976c11 [libcalamaresui] Add breeze SVGs under LGPLv3 7 years ago
Adriaan de Groot 4d7f70a28f [kcrash] Remove duplicate 'Tools' tab 7 years ago
Adriaan de Groot e8e284f724 Merge remote-tracking branch 'origin/kcrash' 7 years ago
Adriaan de Groot 2d31e987c0 [libcalamaresui] Unrelated typedef for JobList 8 years ago
Adriaan de Groot e09f179d76 Coverity: repair previous commit 8 years ago
Adriaan de Groot a138eb501c Coverity: fix issues reported in QJsonModel
- Also reported upstream, in the MIT-licensed version of same.

This is a re-hash of b348a45834,
adding memory-leak prevention when load() is called.
8 years ago
Adriaan de Groot fe0cb88d70 Linking: be a little more relaxed in linking to dependent libs 8 years ago
Adriaan de Groot 33f78b375d Merge branch 'master' into kcrash 8 years ago
Adriaan de Groot 8917d153da Drop the (inter-)module dependencies system.
- Was marked incomplete and unused; none of the existing modules
   set any requirements, and the descriptors are not set up to
   hold the requirements information anyway.
 - Dependencies are generally through globalStorage values, or if
   there are dependent jobs they should be created in-order by one
   source (e.g. though a View or a subclass of CppJob which overrides
   jobs() ).
 - It is the responsibility of deployers to formulate a settings.conf
   that includes all the required modules.
 - A 'real' dependency system is going to lead to the introduction
   of interface-definitions and a great deal of complexity, for a
   use case that can be handled with careful deployment instead.
8 years ago
Adriaan de Groot bd4ee9320d Clang: warnings--, drop unused WindowFlags parameter 8 years ago
Adriaan de Groot 866d338894 Clang: warnings-- 8 years ago
Adriaan de Groot 40c49bd50d Clang: be more explicit about marking third-party code.
- This is only a partial solution to warnings caused by third-party
   code, since #including the headers from other sources won't apply
   the warning-suppressions.
 - Flags are not applied when building the source as part of a larger
   target, but are on re-building just one object (it seems -- CMake
   issue to track down).
8 years ago
Adriaan de Groot 337903db09 Clang: reduce warnings about overriden destructors 8 years ago
Adriaan de Groot b04a890798 Fix code using re-imported imageregistry 8 years ago
Adriaan de Groot 6010805935 Licensing: add header to imageregistry copyright
- mention that this is shipped as part of Calamares
         - SPDX info
8 years ago
Adriaan de Groot a65bc7d756 Licensing: re-import ImageRegistry
- include full license headers,
 - copied from
   - repo: https://github.com/tomahawk-player/tomahawk/
   - rev:  00f602e10203b76fc28b4615868c567e6bd4ced4
   - path: src/libtomahawk/utils/ImageRegistry.cpp
8 years ago
Adriaan de Groot d23818b27c Fix code using re-imported spinner 8 years ago
Adriaan de Groot d2d59e6206 Licensing: add header to QtWaitingSpinner copyright
- mention that this is shipped as part of Calamares
     - SPDX info
8 years ago
Adriaan de Groot 553a66b326 Licensing: re-import QtWaitingSpinner
- include full license headers,
 - copied from
   - repo: https://github.com/snowwlex/QtWaitingSpinner
   - rev:  bb8f8987ca19406dc75704eb382ab52e981b773f

This revision *does not build* because the files have been renamed.
8 years ago
Adriaan de Groot 24f26ee7c8 Licensing: add header to QJsonModel copyright
- mention that this is shipped as part of Calamares
 - SPDX info
8 years ago
Adriaan de Groot e5c0854e66 Licensing: re-import GPLv3 version of QJsonItem
- include full license headers,
 - copied from
    - repo: https://github.com/dridk/QJsonmodel
    - rev:  fbd4fb3b1c1311f69cd8ada9bbb7a89fd6fe171e
8 years ago
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
8 years ago
Adriaan de Groot ddb6455365 Revert be2338ff0 (intended just to reduce warnings)
- keep the calamaresstyle formatting changes,
 - drop shadowing and nullptr changes.

FIXES #805
8 years ago
Adriaan de Groot ddf7b7fc90 CMake: remove superfluous indirection 8 years ago
Adriaan de Groot c6297f1db5 Clang: warnings-- 8 years ago
Adriaan de Groot edb1dbaa6e Clang: warnings-- 8 years ago
Adriaan de Groot da4fa6a63a Fix link / library name 8 years ago
Adriaan de Groot bd37572fd8 Clang: reduce warnings 8 years ago
Adriaan de Groot be2338ff08 Clang: reduce warnings 8 years ago
Adriaan de Groot cb57de2e65 Clang: float -> qreal where it matches Qt API 8 years ago
Adriaan de Groot 463615a1c0 Clang: don't shadow local variable names 8 years ago
Adriaan de Groot 764fb742ba Clang: clean up documentation markup 8 years ago
Adriaan de Groot bd3786ebeb Clang: reduce warnings in various places 8 years ago
Adriaan de Groot 7e25909e18 YAML: refactor YAML-exception reporting
- both NetInstall (group data) and Locale (GeoIP) use network
   data returned as a source of YAML data. Try to explain
   parsing errors for both.

FIXES #786
8 years ago
Adriaan de Groot 6c5199c9cc YAML: on error, report filename along with location 8 years ago
Adriaan de Groot 73a75e837b Auto-resize the main window.
If the summary widget is large, it gets a scrollbar. This looks really
weird, so prefer to grow the installer window instead. Discussed with
@sitter and settled on this solution.

ViewSteps can signal the ViewManager that they need more space (in pixels),
which may or may not be honored.

FIXES #778
8 years ago
Adriaan de Groot e26d5ab206 Don't leak memory for allocated modules 8 years ago
Adriaan de Groot a718eb76cb Docs: code-documentation about summary page 8 years ago
Adriaan de Groot 2fdccdf090 Merge branch 'simplify-module-desc' 8 years ago
Adriaan de Groot e3008657c4 Modules: accept 'viewmodule' as alias of 'view', improve logging on error. 8 years ago
Adriaan de Groot 594bc37d67 Coverity: uninitialized member 8 years ago
Adriaan de Groot 10eaf06f60 Python: Be more descriptive when modules can't be loaded. 8 years ago
Adriaan de Groot d3f624f818 FinishedPage: no modal pop-ups in a slot
Switch the failure popup to non-modal, and quit the application when
the pop-up is closed. This allows signals to be delivered to other
slots connected to JobQueue::failed.
8 years ago
Adriaan de Groot 44e6955f19 Feature: allow disable welcome-logo resizing 8 years ago
Adriaan de Groot c4f955874d QLabel::setPixmap() isn't virtual, don't make it so. 8 years ago
Adriaan de Groot ee4e4dfccc C++ trickery to make the code shorter to read. 8 years ago
Adriaan de Groot 43e7ea6265 Merge branch 'no-rcc' 8 years ago
Adriaan de Groot 9b3af4aac3 i18n: translate yes/no buttons, don't rely on Qt translations 8 years ago
Adriaan de Groot 61c0ab4534 Clang: fix the right conversions (thanks KKofler) 8 years ago
Adriaan de Groot 4561849c39 UI: add tooltip to Cancel / Quit button
Change 'Quit' at the end to 'Done', because we're done -- and Quit
is sometimes interpreted as cancelling. Tooltip for additional
explanation.
8 years ago
Adriaan de Groot 09b25ab3e9 Clang: make ViewManager instance a proper singleton. 8 years ago
Adriaan de Groot 6a3aa01564 Clang: reduce warnings 8 years ago
Adriaan de Groot 2add7f6f86 Clang: type-annotate float literal 8 years ago
Adriaan de Groot 3b5955900e Coverity: explicit initialization 8 years ago
Adriaan de Groot 8ea14d7957 Release: add copyright to files I've touched 8 years ago
Adriaan de Groot 12a0edfa50 Clang: reduce warnings 8 years ago
Adriaan de Groot 2148538fac Clang: reduce warnings 8 years ago
Adriaan de Groot d9ea22a486 Screensize: refactor, move screen-size constants into global constexpr
Also drop the minimum size a tiny bit, to 1024x520.
8 years ago
Adriaan de Groot ce6997d214 Coverity: fix some uninitialized members 8 years ago
Adriaan de Groot f1cfde36d6 Allow different welcome message.
FIXES #592
8 years ago
Adriaan de Groot 14912d6c63 Merge branch 'master' of https://github.com/AOSC-Dev/calamares into AOSC-Dev-master 8 years ago
Adriaan de Groot 14cba59ab3 Logging: distinguish different failures in module instantiation. 8 years ago
Adriaan de Groot 367fe716b3 Configs: empty config files are ok.
The default umount.conf contains no keys -- so it isn't a map,
but it is a valid config file. Avoid the warning by accepting
empty files.

FIX 707
8 years ago
Teo Mrnjavac 17962179bd Documentation++ 8 years ago
Teo Mrnjavac 6c7cdb5f50 Documentation++ 8 years ago
Teo Mrnjavac 99a1c2245f Documentation++ 8 years ago
Teo Mrnjavac de3c94fc97 Useless debug is useless. 8 years ago
Teo Mrnjavac f4696f22a1 Pass locale name to PythonQt module. 8 years ago
Teo Mrnjavac 0c36de68ff Attach retranslator to base widget of ViewStep. 8 years ago
Teo Mrnjavac d3845144bb Start from empty str for entry point annotation. 8 years ago
Teo Mrnjavac 46787222c9 Fix ifdefs for WITH_PYTHONQT. 8 years ago
Teo Mrnjavac ca7728cd34 Implement PythonQtViewStep::jobs as a wrapper for Python-provided jobs. 8 years ago
Teo Mrnjavac d425f71fdb Build it. 8 years ago
Teo Mrnjavac aad1c536d1 New PythonQtJob class. 8 years ago
Teo Mrnjavac f3fa124f8d Set configuration map in PythonQt module. 8 years ago
Teo Mrnjavac a3887d268a Expose global_storage and utils as objects in PythonQt.calamares. 8 years ago
Teo Mrnjavac 864109fd4e Build them. 8 years ago
Teo Mrnjavac 4648f5e8e0 Utils wrapper class, to expose libcalamares.utils under PythonQt. 8 years ago
Teo Mrnjavac 7791307e1e Wrapper for GlobalStorage, to make it available through PythonQt. 8 years ago
Teo Mrnjavac 25613d1bef Fix _calamares_module_basewidget check and improve readability. 8 years ago
Teo Mrnjavac 0f0a6ab18d PythonQtViewStep has no decorator. 8 years ago
Teo Mrnjavac 9aefeed648 Expose PythonQt.calamares.global_storage. 8 years ago
Teo Mrnjavac a54f217173 Use CalamaresUtils::lookupAndCall in PythonQtViewStep.
This is done to support both Pythonic and Qt style method names, i.e.
both "isNextEnabled" and "is_next_enabled" is ok in a Python module.
Also better documentation in PythonQtViewStep, and stub for
setConfigurationMap.
Finally, proper handling of PythonQtViewStep Python-facing basewidget:
with this change, a call to PQVS::widget() only triggers a widget
relayout if it's necessary, and leaves it alone otherwise.
8 years ago
Teo Mrnjavac fb9d1fa339 Add PythonQtUtils.{h,cpp} with CalamaresUtils::lookupAndCall. 8 years ago
Teo Mrnjavac 9570bd94e8 Nor this. 8 years ago
Teo Mrnjavac 53f687587b Add support for attaching a Python console in DebugWindow.
Also add support for showing module type/interface.
Also minor layout improvements.
8 years ago
Teo Mrnjavac c618999418 Properly load new PythonQtViewModule.
Only initialize Python if it's not initialized yet.
Inject @calamares_module decorator to fetch the entry class.
8 years ago
Teo Mrnjavac 2736ad6e09 User-visible Type and Interface strings in Module. 8 years ago
Teo Mrnjavac d526935001 Remove PythonQtConsoleViewStep, which was only there for testing. 8 years ago
Teo Mrnjavac b4002a716a New PythonQtViewStep. 8 years ago
Teo Mrnjavac 553062fc11 Fix build. 8 years ago
Teo Mrnjavac 8a90b89d25 Headers. 8 years ago
Teo Mrnjavac 0a5faa4888 PythonQtConsoleViewStep for testing purposes. 8 years ago
Teo Mrnjavac 2c3b56c803 Link against PythonQt; new PythonQtViewModule stub. 8 years ago
Teo Mrnjavac e2b2d761c2 Do not LINK_PUBLIC by default. 8 years ago
Kevin Kofler 00d9f211f5 Add support for C++/Qt batch job plugins
These job plugins work similarly to view modules, with the following
differences:

* These jobs need to link only libcalamares, not libcalamaresui. For
  this reason, PluginFactory was moved from libcalamaresui to
  libcalamares. (It depends only on QtCore.)

* Instead of deriving from ViewModule, derive from CppJob (which is a
  subclass of Job).

* Like process and Python jobs, a job plugin is a single job, whereas a
  ViewModule can generate a whole list of jobs.

The CppJob and CppJobModule classes are new. In Module::fromDescriptor,
the combination type=job, intf=qtplugin is now supported and mapped to
CppJobModule.
9 years ago
Teo Mrnjavac 4662c9c877 Remove irrelevant debug output. 9 years ago
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)
9 years ago
Teo Mrnjavac 9d61420e4f Added toolbox page to Debug interface, with deliberate crash feature. 9 years ago
Teo Mrnjavac 9928124195 Added toolbox page to Debug interface, with deliberate crash feature. 9 years ago
Teo Mrnjavac 1d8330f1eb Handle missing setting gracefully. 9 years ago
Teo Mrnjavac c1d1e7cb5a Prevent memory leak on bad module dir (fix Coverity defect 114172). 9 years ago
Teo Mrnjavac 27b27644c4 Initialize all members (fix Coverity defect 114173). 9 years ago
Mingcong Bai 2d64110150 calamares: sidebarTextHighlight for branding
This commit adds support for distribution to define sidebarTextHighlight to their
branding.desc file, to control the left panel (sidebar) with highlight behind the
current step (isCurrent) text label.
9 years ago
Teo Mrnjavac 25e388aa29 Add CalamaresUtils::defaultFont() 9 years ago
Teo Mrnjavac 17f1f5f61f Load those icons. 9 years ago
Teo Mrnjavac d4117b333c New icons for DeviceInfoWidget. 9 years ago
Teo Mrnjavac 351c69c300 Remove obsolete code.
CAL-340 #close
9 years ago
Teo Mrnjavac 0fa19cca68 Fix the last page fix. 9 years ago
Teo Mrnjavac 51d0d9f9b4 Disable next on last page. 9 years ago
Teo Mrnjavac 6de8158bec It is a good idea to initialize pointer members in the ctor. 9 years ago
Teo Mrnjavac 5e87e01374 Refactor view module workflow in ViewManager. 10 years ago
Teo Mrnjavac 2a0eb9e481 Fix debug window. 10 years ago
Teo Mrnjavac 461ef79170 ViewStep should know their own instance keys. 10 years ago
Teo Mrnjavac fb44fb97b6 Massive refactor of module loading, configuration, startup, management. 10 years ago
Teo Mrnjavac c74c67805e Remember to update CMakeLists. 10 years ago
Teo Mrnjavac 9042616a8a Refactor configuration file loading to allow multiple instances. 10 years ago
Teo Mrnjavac 4f84e9ad14 InstallationViewStep is now ExecutionViewStep.
It also uses JobQueue directly.
10 years ago
Teo Mrnjavac f836019f49 Add Calamares::PluginFactory to allow multiple instances of a Qt Plugin. 10 years ago
Teo Mrnjavac 3b56c5c9e8 Use safe QTimer::singleShot connection. 10 years ago
Teo Mrnjavac 42e465aa10 CalamaresUtils::System is now a class. 10 years ago
Teo Mrnjavac 2e3751ffa7 If dont-chroot is set, don't chroot target env calls. 10 years ago
Teo Mrnjavac 8064736580 Add clearLayout to CalamaresUtilsGui. 10 years ago
Teo Mrnjavac 1a39d2a6e1 Always provide this as context for a signal connection with a lambda. 10 years ago
Teo Mrnjavac 42316fe6dc Do ask for confirmation if quitting during install phase. 10 years ago
Teo Mrnjavac 851f175ae7 Only load QML when the install page is activated. 10 years ago
Teo Mrnjavac 506e51598d Do not dereference a nullptr. 10 years ago
Teo Mrnjavac 80c76c549f New FixedAspectRatioLabel for pixmaps. 10 years ago
Teo Mrnjavac 75cf3f08c6 Add ProductWelcome image to Branding. 10 years ago
Teo Mrnjavac bd7dd43c90 Hardcode Calamares logo in About.
CAL-241 #close
10 years ago
Teo Mrnjavac 11f5b729a8 Avoid dereferencing nullptr. 10 years ago
Teo Mrnjavac df9daf8fec Avoid accessing nullptr. 10 years ago
Teo Mrnjavac 233d759a00 Initialize all members even in private ctor. 10 years ago
Teo Mrnjavac 46dcb51f62 Initialize all members and make dtor virtual. 10 years ago
Teo Mrnjavac 8e16bea3d9 Remove unused members. 10 years ago
Teo Mrnjavac b348a45834 Fix memory leak in QJsonModel. 10 years ago
Teo Mrnjavac 77e205e48a Reload the slideshow on language change. 10 years ago
Teo Mrnjavac 375150347b nullptr is better than 0 10 years ago
Teo Mrnjavac 09d7cd9de6 Add translationsPathPrefix to Branding. 10 years ago
Teo Mrnjavac f8995bc8e5 Copyright header. 10 years ago
Teo Mrnjavac a8b8a3a455 Show an "are you sure" prompt before install, if prompt-install is true. 10 years ago
Teo Mrnjavac b86193824d Read a prompt-install variable from settings.conf. 10 years ago
Teo Mrnjavac 24fc227e76 Retranslate navigation buttons. 10 years ago
Teo Mrnjavac c9769dfd76 Add Disk and Partition icons to CalamaresUtils::defaultPixmap. 10 years ago
Teo Mrnjavac 9606b228d7 Add Disk and Partition icons to qrc. 10 years ago
Teo Mrnjavac b095982830 Expose new partitioning icons in CalamaresUtils::defaultPixmap. 10 years ago
Teo Mrnjavac cf49239419 Update libcalamaresui.qrc 10 years ago
Teo Mrnjavac 506b79ef2c Add new icons to CalamaresUtils::defaultPixmap. 10 years ago
Teo Mrnjavac e6f98393b8 Add icons to qrc. 10 years ago
Teo Mrnjavac ec883e391d Add different kinds of Url to Branding. 10 years ago
Teo Mrnjavac bce6ec94fd Add ProductUrl and ProductUrlText to Branding. 10 years ago
Teo Mrnjavac 19bcc887a8 Fix build with Qt 5.5 branch. 10 years ago
Teo Mrnjavac cc5095781d Branding::style is now ::styleString for clarity. 10 years ago
Teo Mrnjavac 9615691554 CalamaresStyle is no more. Look for color constants in Branding. 10 years ago
demmm b982d751af adding needed Branding.cpp section
builds, but segfaults on running
10 years ago
demmm 56afa45812 start of trial to add sidebar style options
use a new style section in branding.desc, doesn't build as is
10 years ago
demmm d750885e75 Revert "add URL option in greeting page" 10 years ago
demmm be29755230 add URL option in greeting page
URL is a variable set in branding.desc, distros cna link to a Known Issues page
text for the URL is also possible to set in branding, known issues is default
advantage is any text possible as distros see fit
disadvantage, not part of translated strings
if most agree, Known Issues can be set as hard coded text, not in branding.desc
10 years ago
Teo Mrnjavac c2a0845738 Debug window title. 10 years ago
Teo Mrnjavac 5951208c1b Add Modules page to DebugWindow. 10 years ago
Teo Mrnjavac dda7ea211d Make ModuleManager accessible from outside CalamaresApplication. 10 years ago
Teo Mrnjavac 4e2e964503 Return configurationMap from Module. 10 years ago
Teo Mrnjavac 8a60abdfc9 Add JobQueue list to DebugWindow 10 years ago
Teo Mrnjavac 3ce8abcb78 Expand all items in the GlobalStorage debug tree. 10 years ago
Teo Mrnjavac 8729b6a25f Update the debug view every time GlobalStorage changes. 10 years ago
Teo Mrnjavac 060983279f Add a QTreeView for GlobalStorage contents to DebugWindow.
Not real time yet.
10 years ago
Teo Mrnjavac 9249d6e165 Add QJsonModel. 10 years ago
Teo Mrnjavac 00565d0f12 Stubs for DebugWindow. 10 years ago
Gormogon e2d05cb9f2 Align Pointers 10 years ago
Teo Mrnjavac 2782328036 Fix phase handling in ViewManager, to allow adding a Finished page. 10 years ago
Teo Mrnjavac 20bc34029d Copyright. 10 years ago
Teo Mrnjavac a670de3035 Add currentPhase to ModuleManager. 10 years ago
Teo Mrnjavac 171248ad4f Add isBackEnabled checks to all ViewSteps. 10 years ago
Teo Mrnjavac de406cef22 The Quit button is now Cancel, except on the last page. 10 years ago
Teo Mrnjavac 50a413d3c2 Only set the slideshow if the branding component has one. 10 years ago
Teo Mrnjavac 9622888d1d Load QML modules in a central place + dummy QML slideshow. 10 years ago
Teo Mrnjavac 14ddba70ef Initial commit for QML slideshow support. 10 years ago
Teo Mrnjavac d3ea92ef3d Also in CalamaresUtilsGui 10 years ago
Teo Mrnjavac 2a5e8c8ee3 Add replace icon. 10 years ago
Kevin Kofler 462819060b branding: Add a dedicated bootloaderEntryName setting.
Use it in the bootloader and grubcfg modules instead of
shortProductName.
11 years ago
Kevin Kofler 538b457ea8 branding: Add a shortProductName entry.
This is what the bootloader modules really want, and it was also missing
for consistency with the other branding entries.
11 years ago
Kevin Kofler 98f99fa5bf Introduce and use a Calamares::Branding::setGlobals method.
The method creates a map called "branding" in the global storage, and
inserts an entry for each of the branding strings. This makes the
branding information accessible to the Python modules.

The method is called by CalamaresApplication::initJobQueue.

This is necessary because the Branding class is in libcalamaresui, so
Python modules cannot access it directly.
11 years ago
Teo Mrnjavac 058be8beb2 Ensure viewpages will have focus. To choose a focused widget inside it,
a viewpage should override void focusInEvent( QFocusEvent* ).
11 years ago
Teo Mrnjavac fef448833e And some more debug output readability improvements. 11 years ago
Teo Mrnjavac f2f73b2e87 More meaningful debug output. 11 years ago
Teo Mrnjavac aaa696f543 Even less debug noise. 11 years ago
Teo Mrnjavac 5b01925d99 Remove debug noise. 11 years ago
Teo Mrnjavac 8026a287d3 Shut up Qt lupdate warnings. 11 years ago
Teo Mrnjavac 519ba038cf Fix build on Qt 5.4, again. 11 years ago
demmm c84a98c23c set option to select higlighted text color
keep it independent from background color, should make it easier to add a color section option to branding
11 years ago
Teo Mrnjavac 7594c85f2e Add ImageRegistry support to Branding. 11 years ago
Teo Mrnjavac 5e8ab97de4 Actually load branding data from default component. 11 years ago
Teo Mrnjavac 2182918476 Groundwork for branding loader/manager. 11 years ago
Teo Mrnjavac 97cf2a796c Load branding component name from Settings. 11 years ago
Teo Mrnjavac 9ebc881223 Prevent segfault on exit when module not found. 11 years ago
Teo Mrnjavac 13ccede630 Add new icons to CalamaresUtilsGui 11 years ago
Teo Mrnjavac 41cb09ea01 Add ClickableLabel, a QLabel which emits the clicked signal. 11 years ago
Teo Mrnjavac 382317dcaf Added WaitingWidget to libcalamaresui, wrapper for QtWaitingSpinner 11 years ago
Teo Mrnjavac b14a715300 Add icons to qrc. 11 years ago
Teo Mrnjavac 14130ae9c0 Only allow a ViewStep to change next button status if it's active now. 11 years ago
Teo Mrnjavac 2182fd2f0c Add info and fail icons to libcalamaresui. 11 years ago
Teo Mrnjavac d97bb47f09 Add proper QResrouce system to libcalamaresui, finish up prepare checks
This also adds ImageRegistry, a SVG cache, a bunch of utility functions
for shared pixmaps in CalamaresUtilsGui and renames several qrc files
in viewmodules.
11 years ago
Teo Mrnjavac 1bb6603998 Move spinner widget to libcalamaresui. 11 years ago