Home
last modified time | relevance | path

Searched refs:Branding (Results 1 – 25 of 547) sorted by relevance

12345678910>>...22

/dports/sysutils/calamares/calamares-3.2.44.2/src/libcalamaresui/
H A DBranding.cpp47 Branding* Branding::s_instance = nullptr;
49 Branding*
50 Branding::instance() in instance()
146 static Branding::UploadServerInfo
165 return Branding::UploadServerInfo( Branding::UploadServerType::None, QUrl(), 0 ); in uploadServerFromMap()
182 Branding::Branding( const QString& brandingFilePath, QObject* parent ) in Branding() function in Calamares::Branding
306 Branding::string( Branding::StringEntry stringEntry ) const in string()
313 Branding::styleString( Branding::StyleEntry styleEntry ) const in styleString()
320 Branding::imagePath( Branding::ImageEntry imageEntry ) const in imagePath()
326 Branding::image( Branding::ImageEntry imageEntry, const QSize& size ) const in image()
[all …]
H A DBranding.h38 class UIDLLEXPORT Branding : public QObject
159 static Branding* instance();
161 explicit Branding( const QString& brandingFilePath, QObject* parent = nullptr );
190 QPixmap image( Branding::ImageEntry imageEntry, const QSize& size ) const;
254 static Branding* s_instance;
/dports/sysutils/calamares/calamares-3.2.44.2/src/calamares/
H A Dcalamares-sidebar.qml22 color: Branding.styleString( Branding.SidebarBackground );
36 source: "file:/" + Branding.imagePath(Branding.ProductLogo);
49 …color: Branding.styleString( index == ViewManager.currentStepIndex ? Branding.SidebarBackgroundSel…
54 …color: Branding.styleString( index == ViewManager.currentStepIndex ? Branding.SidebarTextSelected …
68 …color: Branding.styleString( mouseArea.containsMouse ? Branding.SidebarTextHighlight : Branding.Si…
80 …color: Branding.styleString( mouseArea.containsMouse ? Branding.SidebarTextSelect : Branding.Sideb…
H A DCalamaresWindow.cpp67 orientation( const Calamares::Branding::PanelSide s ) in orientation()
69 using Side = Calamares::Branding::PanelSide; in orientation()
97 const Calamares::Branding* const branding = Calamares::Branding::instance(); in getWidgetSidebar()
329 case Calamares::Branding::PanelFlavor::Widget: in flavoredWidget()
332 case Calamares::Branding::PanelFlavor::Qml: in flavoredWidget()
335 case Calamares::Branding::PanelFlavor::None: in flavoredWidget()
345 Calamares::Branding::PanelSide side, in insertIf()
347 Calamares::Branding::PanelSide firstSide ) in insertIf()
373 const Calamares::Branding* const branding = Calamares::Branding::instance(); in CalamaresWindow()
374 using ImageEntry = Calamares::Branding::ImageEntry; in CalamaresWindow()
[all …]
H A DCalamaresApplication.cpp84 …setWindowIcon( QIcon( Calamares::Branding::instance()->imagePath( Calamares::Branding::ProductIcon… in init()
196 new Calamares::Branding( brandingFile.absoluteFilePath(), this ); in initBranding()
259 …if ( Calamares::Branding::instance() && Calamares::Branding::instance()->windowPlacementCentered()… in initView()
272 if ( Calamares::Branding::instance()->windowMaximize() ) in initViewSteps()
299 Calamares::Branding::instance()->setGlobals( jobQueue->globalStorage() ); in initJobQueue()
/dports/sysutils/calamares/calamares-3.2.44.2/src/calamares/progresstree/
H A DProgressTreeDelegate.cpp59 …QColor( Calamares::Branding::instance()->styleString( Calamares::Branding::SidebarBackground ) ) ); in paint()
60 …painter->setPen( QColor( Calamares::Branding::instance()->styleString( Calamares::Branding::Sideba… in paint()
81 …painter->setPen( Calamares::Branding::instance()->styleString( Calamares::Branding::SidebarTextSel… in paintViewStep()
83 … = Calamares::Branding::instance()->styleString( Calamares::Branding::SidebarTextHighlight ); in paintViewStep()
H A DProgressTreeView.cpp32 … Calamares::Branding::instance()->styleString( Calamares::Branding::SidebarBackground ) ); in ProgressTreeView()
/dports/sysutils/calamares/calamares-3.2.44.2/src/libcalamaresui/viewpages/
H A DSlideshow.cpp59 if ( Branding::instance()->slideshowAPI() == 2 ) in SlideshowQML()
83 if ( !m_qmlComponent && !Calamares::Branding::instance()->slideshowPath().isEmpty() ) in loadQmlV2()
86 … QUrl::fromLocalFile( Calamares::Branding::instance()->slideshowPath() ), in loadQmlV2()
110 … cDebug() << Logger::SubEntry << "Loading" << Calamares::Branding::instance()->slideshowPath(); in loadQmlV2Complete()
117 …QUrl::fromLocalFile( Calamares::Branding::instance()->slideshowPath() ), m_qmlComponent, m_qmlObje… in loadQmlV2Complete()
164 if ( Branding::instance()->slideshowAPI() == 2 ) in changeSlideShowState()
169 else if ( !Calamares::Branding::instance()->slideshowPath().isEmpty() ) in changeSlideShowState()
174 … m_qmlShow->setSource( QUrl::fromLocalFile( Calamares::Branding::instance()->slideshowPath() ) ); in changeSlideShowState()
191 if ( ( Branding::instance()->slideshowAPI() == 2 ) && ( state == Slideshow::Stop ) ) in changeSlideShowState()
206 , m_images( Branding::instance()->slideshowImages() ) in SlideshowPictures()
/dports/www/grafana8/grafana-8.3.6/public/app/core/components/Login/
H A DLoginLayout.tsx4 import { Branding } from '../Branding/Branding';
18 const subTitle = Branding.GetLoginSubTitle();
24 …<Branding.LoginBackground className={cx(loginStyles.container, startAnim && loginStyles.loginAnim)…
25 … <div className={cx(loginStyles.loginContent, Branding.LoginBoxBackground(), 'login-content-box')}>
27 <Branding.LoginLogo className={loginStyles.loginLogo} />
29 <h1 className={loginStyles.mainTitle}>{Branding.LoginTitle}</h1>
30 {subTitle && <h3 className={loginStyles.subTitle}>{Branding.GetLoginSubTitle()}</h3>}
36 </Branding.LoginBackground>
H A DLoginPage.tsx11 import { Branding } from 'app/core/components/Branding/Branding';
22 document.title = Branding.AppTitle;
/dports/www/grafana8/grafana-8.3.6/public/app/core/components/Page/
H A DPage.tsx11 import { Branding } from '../Branding/Branding';
30 document.title = title ? `${title} - ${Branding.AppTitle}` : Branding.AppTitle;
32 document.title = Branding.AppTitle;
/dports/sysutils/calamares/calamares-3.2.44.2/src/modules/welcome/
H A DWelcomePage.cpp46 using Branding = Calamares::Branding; in WelcomePage() typedef
58 QString bannerPath = Branding::instance()->imagePath( Branding::ProductBanner ); in WelcomePage()
101 auto icon = Calamares::Branding::instance()->image( m_conf->languageIcon(), QSize( 48, 48 ) ); in init()
215 message = Calamares::Branding::instance()->welcomeStyleCalamares() in retranslate()
221 message = Calamares::Branding::instance()->welcomeStyleCalamares() in retranslate()
226 ui->mainText->setText( message.arg( Calamares::Branding::instance()->versionedName() ) ); in retranslate()
228 …ui->supportButton->setText( tr( "%1 support" ).arg( Calamares::Branding::instance()->shortProductN… in retranslate()
252 .arg( Calamares::Branding::instance()->versionedName() ), in showAboutBox()
H A DConfig.cpp42 const auto* branding = Calamares::Branding::instance(); in retranslate()
193 const auto* branding = Calamares::Branding::instance(); in setLocaleIndex()
245 const auto* branding = Calamares::Branding::instance(); in genericWelcomeMessage()
281 jobOrBrandingSetting( Calamares::Branding::StringEntry e, const QVariantMap& map, const QString& ke… in jobOrBrandingSetting()
290 return v.toBool() ? ( Calamares::Branding::instance()->string( e ) ) : QString(); in jobOrBrandingSetting()
306 auto icon = Calamares::Branding::instance()->image( language, QSize( 48, 48 ) ); in setLanguageIcon()
390 using Calamares::Branding; in setConfigurationMap()
392 … setSupportUrl( jobOrBrandingSetting( Branding::SupportUrl, configurationMap, "showSupportUrl" ) ); in setConfigurationMap()
393 …setKnownIssuesUrl( jobOrBrandingSetting( Branding::KnownIssuesUrl, configurationMap, "showKnownIss… in setConfigurationMap()
394 …setReleaseNotesUrl( jobOrBrandingSetting( Branding::ReleaseNotesUrl, configurationMap, "showReleas… in setConfigurationMap()
[all …]
/dports/sysutils/calamares/calamares-3.2.44.2/src/libcalamaresui/utils/
H A DPaste.cpp121 auto [ type, serverUrl, sizeLimitBytes ] = Calamares::Branding::instance()->uploadServer(); in doLogUpload()
127 if ( type == Calamares::Branding::UploadServerType::None ) in doLogUpload()
148 case Calamares::Branding::UploadServerType::None: in doLogUpload()
151 case Calamares::Branding::UploadServerType::Fiche: in doLogUpload()
195 auto [ type, serverUrl, sizeLimitBytes ] = Calamares::Branding::instance()->uploadServer(); in isEnabled()
196 return type != Calamares::Branding::UploadServerType::None && sizeLimitBytes != 0; in isEnabled()
H A DQml.cpp134 QString brandDir = Calamares::Branding::instance()->componentDirectory(); in addExpansions()
225 qmlRegisterSingletonType< Calamares::Branding >( in registerQmlModels()
227 return Calamares::Branding::instance(); in registerQmlModels()
/dports/www/grafana8/grafana-8.3.6/public/app/features/explore/
H A DWrapper.tsx9 import { Branding } from '../../core/components/Branding/Branding';
51 …const documentTitle = `${this.props.navModel.main.text} - ${datasourceTitle} - ${Branding.AppTitle…
/dports/sysutils/calamares/calamares-3.2.44.2/src/modules/welcomeq/
H A Dwelcomeq.qml36 … and set up %1 on your computer.</p>").arg(Branding.string(Branding.ProductName)).arg(Branding.str…
44 source: "file:/" + Branding.imagePath(Branding.ProductWelcome)
H A DRequirements.qml39 Installation cannot continue.</p>").arg(Branding.string(Branding.VersionedName))
41 …Setup can continue, but some features might be disabled.</p>").arg(Branding.string(Branding.Versio…
/dports/sysutils/calamares/calamares-3.2.44.2/src/modules/welcome/checker/
H A DResultsListWidget.cpp198 …if ( !Calamares::Branding::instance()->imagePath( Calamares::Branding::ProductWelcome ).isEmpty() ) in ResultsListWidget()
201 … = QPixmap( Calamares::Branding::instance()->imagePath( Calamares::Branding::ProductWelcome ) ); in ResultsListWidget()
205 if ( Calamares::Branding::instance()->welcomeExpandingLogo() ) in ResultsListWidget()
/dports/sysutils/calamares/calamares-3.2.44.2/src/modules/notesqml/
H A Dnotesqml.qml12 * namespace io.calamares.ui is the Branding object, which can be used
52 ).arg(Branding.string(Branding.VersionedName))
/dports/games/pcgen/pcgen/data/35e/malhavoc_press/complete_book_of_eldritch_might/
H A Dcompleteeldritch_equip_rodsstaffswands.lst14 Rod (Branding - Brandthrall) OUTPUTNAME:Rod of [NAME] TYPE:Magic.Rod COST:68000 WT:4 SOURCEPAGE:p.…
15 Rod (Branding - Silence) OUTPUTNAME:Rod of [NAME] TYPE:Magic.Rod COST:55000 WT:4 SOURCEPAGE:p.172
16 Rod (Branding - Spellsleep) OUTPUTNAME:Rod of [NAME] TYPE:Magic.Rod COST:80000 WT:4 SOURCEPAGE:p.1…
17 Rod (Branding - True Rest) OUTPUTNAME:Rod of [NAME] TYPE:Magic.Rod COST:72000 WT:4 SOURCEPAGE:p.172
18 Rod (Branding - Weakness) OUTPUTNAME:Rod of [NAME] TYPE:Magic.Rod COST:60000 WT:4 SOURCEPAGE:p.172
/dports/sysutils/calamares/calamares-3.2.44.2/src/modules/notesqml/examples/
H A Dnotesqml.qml.example12 * Branding object, which can be used to retrieve strings and paths
71 …cal scrollbar is adjustable, current width set to 10.</p>").arg(Branding.string(Branding.Versioned…
/dports/sysutils/calamares/calamares-3.2.44.2/src/modules/partition/gui/
H A DChoicePage.cpp863 … .arg( Calamares::Branding::instance()->shortProductName() ) ); in doReplaceSelectedPartition()
1019 .arg( Calamares::Branding::instance()->shortProductName() ) ); in updateActionChoicePreview()
1048 Calamares::Branding::instance()->string( Calamares::Branding::BootloaderEntryName ) ); in updateActionChoicePreview()
1186 .arg( Calamares::Branding::instance()->shortProductName() ) ); in setupEfiSystemPartitionSelector()
1194 .arg( Calamares::Branding::instance()->shortProductName() ) ); in setupEfiSystemPartitionSelector()
1345 … .arg( Calamares::Branding::instance()->shortVersionedName() ) ); in setupActions()
1349 … .arg( Calamares::Branding::instance()->shortVersionedName() ) ); ); in setupActions()
1374 … .arg( Calamares::Branding::instance()->shortVersionedName() ) ); in setupActions()
1396 … .arg( Calamares::Branding::instance()->shortVersionedName() ) ); in setupActions()
1421 … .arg( Calamares::Branding::instance()->shortVersionedName() ) ); in setupActions()
[all …]
/dports/security/lego/lego-4.5.3/vendor/github.com/transip/gotransip/v6/domain/
H A Ddomain.go61 Branding Branding `json:"branding"` member
265 type Branding struct { struct
/dports/net/traefik/traefik-2.6.1/vendor/github.com/transip/gotransip/v6/domain/
H A Ddomain.go61 Branding Branding `json:"branding"` member
265 type Branding struct { struct

12345678910>>...22