-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
192 changed files
with
8,077 additions
and
3,665 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
version: '{build}' | ||
pull_requests: | ||
do_not_increment_build_number: true | ||
configuration: Release | ||
branches: | ||
except: | ||
- /^(?i:continuous)$/ | ||
skip_tags: true | ||
environment: | ||
matrix: | ||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 | ||
QT_PROFILE: msvc2015 | ||
QTDIR: C:\Qt\5.10.1\msvc2015 | ||
QBS_PROFILE: MSVC2015-x86 | ||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 | ||
QT_PROFILE: msvc2017_64 | ||
QTDIR: C:\Qt\5.10.1\msvc2017_64 | ||
QBS_PROFILE: MSVC2017-x86_x64 | ||
init: | ||
- set PATH=%QTDIR%\bin;%PATH% | ||
install: | ||
- choco install -y qbs --version 1.11.0 | ||
before_build: | ||
- qbs setup-toolchains --detect | ||
- qbs setup-qt %QTDIR%\bin\qmake.exe appveyor-qt5 | ||
- qbs config profiles.appveyor-qt5.baseProfile %QBS_PROFILE% | ||
- qbs config defaultProfile appveyor-qt5 | ||
- qbs config preferences.qbsSearchPaths %cd%/fluid/qbs/shared | ||
build_script: | ||
- git submodule update --init --recursive | ||
- qbs -d build --all-products config:release project.autotestEnabled:false project.useSystemQbsShared:false project.deploymentEnabled:false project.withDocumentation:false | ||
- dir build\release\install-root | ||
notifications: | ||
- provider: Slack | ||
incoming_webhook: https://hooks.slack.com/services/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 | ||
channel: '#events' | ||
on_build_success: true | ||
on_build_failure: true | ||
on_build_status_changed: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
.gitmodules export-ignore | ||
.travis export-ignore | ||
.travis.yml export-ignore | ||
.mailmap export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/**************************************************************************** | ||
* This file is part of Fluid. | ||
* | ||
* Copyright (C) 2018 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com> | ||
* Copyright (C) 2018 Michael Spencer <sonrisesoftware@gmail.com> | ||
* | ||
* $BEGIN_LICENSE:FDL$ | ||
* | ||
* Permission is granted to copy, distribute and/or modify this document | ||
* under the terms of the GNU Free Documentation License, Version 1.3 | ||
* or any later version published by the Free Software Foundation; | ||
* with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. | ||
* A copy of the license is included in the section entitled "GNU | ||
* Free Documentation License". | ||
* | ||
* $END_LICENSE$ | ||
***************************************************************************/ | ||
|
||
/*! | ||
\qmltype Action | ||
\inqmlmodule Fluid.Controls | ||
\ingroup fluidcontrols | ||
|
||
\brief Represents an action shown in an action bar, context menu, or list. | ||
|
||
One of the most common uses of actions is displaying actions in the action bar of a page | ||
using the \l Page::actions property. See the example for \l Page for more details. | ||
|
||
Actions may contain \l text, an \l icon, a \l toolTip and a \l shortcut. | ||
|
||
\snippet fluidcontrols-action.qml action | ||
*/ | ||
|
||
/*! | ||
\qmlproperty string Fluid.Controls::Action::toolTip | ||
|
||
The tool tip displayed for the action. | ||
*/ | ||
|
||
/*! | ||
\qmlproperty bool Fluid.Controls::Action::visible | ||
|
||
Set to \c false to hide the action in the UI. | ||
|
||
This property is \c true by default. | ||
*/ | ||
|
||
/*! | ||
\qmlproperty bool Fluid.Controls::Action::hasDividerAfter | ||
|
||
Set to \c true to display a divider after the control bound to this action. | ||
|
||
This property is \c false by default. | ||
*/ | ||
|
||
/*! | ||
\qmlproperty bool Fluid.Controls::Action::hoverAnimation | ||
|
||
Set to \c true to rotate the icon 90 degrees on mouseover. | ||
|
||
This property is \c false by default. | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/**************************************************************************** | ||
* This file is part of Fluid. | ||
* | ||
* Copyright (C) 2018 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com> | ||
* | ||
* $BEGIN_LICENSE:FDL$ | ||
* | ||
* Permission is granted to copy, distribute and/or modify this document | ||
* under the terms of the GNU Free Documentation License, Version 1.3 | ||
* or any later version published by the Free Software Foundation; | ||
* with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. | ||
* A copy of the license is included in the section entitled "GNU | ||
* Free Documentation License". | ||
* | ||
* $END_LICENSE$ | ||
***************************************************************************/ | ||
|
||
/*! | ||
\qmltype AlertDialog | ||
\inqmlmodule Fluid.Controls | ||
\ingroup fluidcontrols | ||
|
||
\brief Alert dialogs are urgent interruptions to inform the user about a situation. | ||
|
||
An alert dialog is used to interrupt the user's workflow to inform them about | ||
a situation that requires their acknowledgement. | ||
|
||
Most alert don't need a title and they summarize a decision in a sentence or two | ||
by either asking a question or making a statement related to the action buttons. | ||
|
||
\snippet fluidcontrols-alertdialog.qml file | ||
|
||
For more information you can read the | ||
\l{https://material.io/guidelines/components/dialogs.html}{Material Design guidelines}. | ||
*/ | ||
|
||
/*! | ||
\qmlproperty string Fluid.Controls::AlertDialog::text | ||
|
||
Informative text to display. | ||
*/ |
Oops, something went wrong.