akregator
akregatorconfig.cpp
Go to the documentation of this file.
41 itemShowQuickFilter = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Show Quick Filter" ), mShowQuickFilter, true );
44 itemStatusFilter = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "Status Filter" ), mStatusFilter, 0 );
47 itemTextFilter = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Text Filter" ), mTextFilter );
50 itemViewMode = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "View Mode" ), mViewMode, 0 );
57 itemSplitter1Sizes = new KConfigSkeleton::ItemIntList( currentGroup(), QLatin1String( "Splitter 1 Sizes" ), mSplitter1Sizes, defaultSplitter1Sizes );
64 itemSplitter2Sizes = new KConfigSkeleton::ItemIntList( currentGroup(), QLatin1String( "Splitter 2 Sizes" ), mSplitter2Sizes, defaultSplitter2Sizes );
70 itemStandardFont = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Standard Font" ), mStandardFont );
73 itemFixedFont = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Fixed Font" ), mFixedFont );
76 itemSerifFont = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Serif Font" ), mSerifFont );
79 itemSansSerifFont = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Sans Serif Font" ), mSansSerifFont );
82 itemUseCustomColors = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "UseCustomColors" ), mUseCustomColors, false );
85 itemColorUnreadArticles = new KConfigSkeleton::ItemColor( currentGroup(), QLatin1String( "ColorUnreadArticles" ), mColorUnreadArticles, QColor( "#0000FF" ) );
88 itemColorNewArticles = new KConfigSkeleton::ItemColor( currentGroup(), QLatin1String( "ColorNewArticles" ), mColorNewArticles, QColor( "#FF0000" ) );
94 itemFonts = new KConfigSkeleton::ItemStringList( currentGroup(), QLatin1String( "Fonts" ), mFonts );
97 itemMediumFontSize = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "MediumFontSize" ), mMediumFontSize );
100 itemMinimumFontSize = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "MinimumFontSize" ), mMinimumFontSize );
103 itemUnderlineLinks = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "UnderlineLinks" ), mUnderlineLinks );
130 itemArchiveMode = new KConfigSkeleton::ItemEnum( currentGroup(), QLatin1String( "ArchiveMode" ), mArchiveMode, valuesArchiveMode, EnumArchiveMode::keepAllArticles );
133 itemMaxArticleAge = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "Max Article Age" ), mMaxArticleAge, 60 );
136 itemMaxArticleNumber = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "Max Article Number" ), mMaxArticleNumber, 1000 );
139 itemDoNotExpireImportantArticles = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Do Not Expire Important Articles" ), mDoNotExpireImportantArticles, true );
145 itemConcurrentFetches = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "Concurrent Fetches" ), mConcurrentFetches, 6 );
148 itemUseHTMLCache = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Use HTML Cache" ), mUseHTMLCache, true );
151 itemCustomUserAgent = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Custom UserAgent" ), mCustomUserAgent );
157 itemFetchOnStartup = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Fetch On Startup" ), mFetchOnStartup, false );
160 itemMarkAllFeedsReadOnStartup = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Mark All Feeds Read On Startup" ), mMarkAllFeedsReadOnStartup, false );
163 itemUseIntervalFetch = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Use Interval Fetch" ), mUseIntervalFetch, true );
166 itemAutoFetchInterval = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "Auto Fetch Interval" ), mAutoFetchInterval, 30 );
169 itemUseNotifications = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Use Notifications" ), mUseNotifications, false );
172 itemShowTrayIcon = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Show Tray Icon" ), mShowTrayIcon, true );
175 itemEnableTrayIconUnreadArticleCount = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Enable Tray Icon Unread Article Count" ), mEnableTrayIconUnreadArticleCount, true );
176 addItem( itemEnableTrayIconUnreadArticleCount, QLatin1String( "EnableTrayIconUnreadArticleCount" ) );
181 itemAlwaysShowTabBar = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Always Show Tab Bar" ), mAlwaysShowTabBar, false );
184 itemCloseButtonOnTabs = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Close Button On Tabs" ), mCloseButtonOnTabs, false );
187 itemNewWindowInTab = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "New Window In Tab" ), mNewWindowInTab, false );
190 itemExternalBrowserUseKdeDefault = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "External Browser Use Kde Default" ), mExternalBrowserUseKdeDefault, true );
193 itemExternalBrowserUseCustomCommand = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "External Browser Use Custom Command" ), mExternalBrowserUseCustomCommand, false );
194 addItem( itemExternalBrowserUseCustomCommand, QLatin1String( "ExternalBrowserUseCustomCommand" ) );
196 itemExternalBrowserCustomCommand = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "External Browser Custom Command" ), mExternalBrowserCustomCommand, QLatin1String( "firefox %u" ) );
215 itemLMBBehaviour = new KConfigSkeleton::ItemEnum( currentGroup(), QLatin1String( "LMB Behaviour" ), mLMBBehaviour, valuesLMBBehaviour, EnumLMBBehaviour::OpenInInternalBrowser );
234 itemMMBBehaviour = new KConfigSkeleton::ItemEnum( currentGroup(), QLatin1String( "MMB Behaviour" ), mMMBBehaviour, valuesMMBBehaviour, EnumMMBBehaviour::OpenInExternalBrowser );
242 itemFeedlistHeaderStates = new KConfigSkeleton::ItemIntList( currentGroup(), QLatin1String( "Feedlist Header States" ), mFeedlistHeaderStates, defaultFeedlistHeaderStates );
247 itemArticlelistHeaderStates = new KConfigSkeleton::ItemIntList( currentGroup(), QLatin1String( "Articlelist Header States" ), mArticlelistHeaderStates, defaultArticlelistHeaderStates );
250 itemArticlelistSortColumn = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "Articlelist Sort Column" ), mArticlelistSortColumn, 0 );
253 itemArticlelistSortOrder = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "Articlelist Sort Order" ), mArticlelistSortOrder, 0 );
259 itemArchiveBackend = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Archive Backend" ), mArchiveBackend, QLatin1String( "metakit" ) );
262 itemUseMarkReadDelay = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Delay Mark Read" ), mUseMarkReadDelay, true );
265 itemMarkReadDelay = new KConfigSkeleton::ItemInt( currentGroup(), QLatin1String( "Mark Read Delay" ), mMarkReadDelay, 0 );
268 itemResetQuickFilterOnNodeChange = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Reset Quick Filter On Node Change" ), mResetQuickFilterOnNodeChange, false );
int mArticlelistSortColumn
Definition: akregatorconfig.h:989
QList< int > mArticlelistHeaderStates
Definition: akregatorconfig.h:988
QString mExternalBrowserCustomCommand
Definition: akregatorconfig.h:982
QList< int > mFeedlistHeaderStates
Definition: akregatorconfig.h:987
bool mDoNotExpireImportantArticles
Definition: akregatorconfig.h:960
bool mEnableTrayIconUnreadArticleCount
Definition: akregatorconfig.h:974
bool mResetQuickFilterOnNodeChange
Definition: akregatorconfig.h:996
bool mExternalBrowserUseKdeDefault
Definition: akregatorconfig.h:980
bool mExternalBrowserUseCustomCommand
Definition: akregatorconfig.h:981
Definition: akregatorconfig.h:13
int mArticlelistSortOrder
Definition: akregatorconfig.h:990
bool mMarkAllFeedsReadOnStartup
Definition: akregatorconfig.h:969
QColor mColorUnreadArticles
Definition: akregatorconfig.h:947
This file is part of the KDE documentation.
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:58:14 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:58:14 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.