Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KDE Pim
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Unmaintained
KDE Pim
Commits
3a1ae5fc
Commit
3a1ae5fc
authored
Feb 11, 2013
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Coding style. Remove not necessary function
parent
c24e69fd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
43 deletions
+36
-43
blogilo/src/dbman.cpp
blogilo/src/dbman.cpp
+1
-2
blogilo/src/mainwindow.cpp
blogilo/src/mainwindow.cpp
+35
-40
blogilo/src/mainwindow.h
blogilo/src/mainwindow.h
+0
-1
No files found.
blogilo/src/dbman.cpp
View file @
3a1ae5fc
...
...
@@ -56,9 +56,8 @@ public:
};
DBMan
::
DBMan
()
:
d
(
new
Private
)
:
d
(
new
Private
)
{
kDebug
();
d
->
mWallet
=
KWallet
::
Wallet
::
openWallet
(
KWallet
::
Wallet
::
LocalWallet
(),
0
);
if
(
d
->
mWallet
)
{
d
->
useWallet
=
true
;
...
...
blogilo/src/mainwindow.cpp
View file @
3a1ae5fc
...
...
@@ -145,10 +145,10 @@ bool MainWindow::queryExit()
{
kDebug
();
writeConfigs
();
if
(
!
DBMan
::
self
()
->
clearTempEntries
()
)
if
(
!
DBMan
::
self
()
->
clearTempEntries
()
)
kDebug
()
<<
"Could not erase temp_post table: "
<<
DBMan
::
self
()
->
lastErrorText
();
const
int
count
=
tabPosts
->
count
();
if
(
count
>
0
)
{
if
(
count
>
0
)
{
toolbox
->
getFieldsValue
(
activePost
->
currentPost
());
for
(
int
i
=
0
;
i
<
count
;
++
i
)
{
PostEntry
*
pst
=
qobject_cast
<
PostEntry
*>
(
tabPosts
->
widget
(
i
));
...
...
@@ -209,7 +209,7 @@ void MainWindow::loadTempPosts()
kDebug
();
QMap
<
BilboPost
*
,
int
>
tempList
=
DBMan
::
self
()
->
listTempPosts
();
int
count
=
tempList
.
count
();
if
(
count
>
0
){
if
(
count
>
0
){
QMap
<
BilboPost
*
,
int
>::
ConstIterator
it
=
tempList
.
constBegin
();
QMap
<
BilboPost
*
,
int
>::
ConstIterator
endIt
=
tempList
.
constEnd
();
for
(
;
it
!=
endIt
;
++
it
)
{
...
...
@@ -220,14 +220,14 @@ void MainWindow::loadTempPosts()
}
// activePost = qobject_cast<PostEntry*>( tabPosts->currentWidget() );
previousActivePostIndex
=
0
;
if
(
activePost
)
if
(
activePost
)
setCurrentBlog
(
activePost
->
currentPostBlogId
()
);
}
void
MainWindow
::
setCurrentBlog
(
int
blog_id
)
{
kDebug
()
<<
blog_id
;
if
(
blog_id
==
-
1
)
{
if
(
blog_id
==
-
1
)
{
blogs
->
setCurrentItem
(
-
1
);
toolbox
->
setCurrentBlogId
(
blog_id
);
// actionCollection()->action("publish_post")->setEnabled( false );
...
...
@@ -235,7 +235,7 @@ void MainWindow::setCurrentBlog( int blog_id )
}
const
int
count
=
blogs
->
items
().
count
();
for
(
int
i
=
0
;
i
<
count
;
++
i
)
{
if
(
blogs
->
action
(
i
)
->
data
().
toInt
()
==
blog_id
)
{
if
(
blogs
->
action
(
i
)
->
data
().
toInt
()
==
blog_id
)
{
blogs
->
setCurrentItem
(
i
);
currentBlogChanged
(
blogs
->
action
(
i
)
);
break
;
...
...
@@ -245,12 +245,12 @@ void MainWindow::setCurrentBlog( int blog_id )
void
MainWindow
::
currentBlogChanged
(
QAction
*
act
)
{
if
(
act
)
{
if
(
mCurrentBlogId
==
act
->
data
().
toInt
()
)
if
(
act
)
{
if
(
mCurrentBlogId
==
act
->
data
().
toInt
()
)
return
;
mCurrentBlogId
=
act
->
data
().
toInt
();
// __currentBlogId = mCurrentBlogId;
if
(
activePost
)
{
if
(
activePost
)
{
// actionCollection()->action("publish_post")->setEnabled( true );
activePost
->
setCurrentPostBlogId
(
mCurrentBlogId
);
}
else
{
...
...
@@ -259,7 +259,7 @@ void MainWindow::currentBlogChanged( QAction *act )
blogs
->
setToolTip
(
DBMan
::
self
()
->
blogList
().
value
(
mCurrentBlogId
)
->
blogUrl
()
);
}
else
{
mCurrentBlogId
=
-
1
;
if
(
activePost
)
if
(
activePost
)
activePost
->
setCurrentPostBlogId
(
mCurrentBlogId
);
}
toolbox
->
setCurrentBlogId
(
mCurrentBlogId
);
...
...
@@ -270,8 +270,8 @@ void MainWindow::slotCreateNewPost()
kDebug
();
tabPosts
->
setCurrentWidget
(
createPostEntry
(
mCurrentBlogId
,
BilboPost
())
);
if
(
mCurrentBlogId
==
-
1
)
{
if
(
!
blogs
->
items
().
isEmpty
()
)
{
if
(
mCurrentBlogId
==
-
1
)
{
if
(
!
blogs
->
items
().
isEmpty
()
)
{
blogs
->
setCurrentItem
(
0
);
currentBlogChanged
(
blogs
->
action
(
0
)
);
}
...
...
@@ -335,7 +335,7 @@ void MainWindow::slotDialogDestroyed( QObject *win )
{
const
QSize
size
=
qobject_cast
<
QWidget
*>
(
win
)
->
size
();
const
QString
name
=
win
->
objectName
();
if
(
name
==
QLatin1String
(
"settings"
))
{
if
(
name
==
QLatin1String
(
"settings"
))
{
Settings
::
setConfigWindowSize
(
size
);
}
}
...
...
@@ -366,7 +366,7 @@ void MainWindow::slotBlogEdited( const BilboBlog &blog )
{
const
int
count
=
blogs
->
actions
().
count
();
for
(
int
i
=
0
;
i
<
count
;
++
i
){
if
(
blogs
->
action
(
i
)
->
data
().
toInt
()
==
blog
.
id
()
)
{
if
(
blogs
->
action
(
i
)
->
data
().
toInt
()
==
blog
.
id
()
)
{
blogs
->
action
(
i
)
->
setText
(
blog
.
title
()
);
break
;
}
...
...
@@ -377,13 +377,13 @@ void MainWindow::slotBlogRemoved( int blog_id )
{
const
int
count
=
blogs
->
actions
().
count
();
for
(
int
i
=
0
;
i
<
count
;
++
i
){
if
(
blogs
->
action
(
i
)
->
data
().
toInt
()
==
blog_id
)
{
if
(
blogs
->
currentItem
()
==
i
)
{
if
(
blogs
->
action
(
i
)
->
data
().
toInt
()
==
blog_id
)
{
if
(
blogs
->
currentItem
()
==
i
)
{
blogs
->
setCurrentItem
(
i
-
1
);
currentBlogChanged
(
blogs
->
action
(
i
-
1
)
);
}
blogs
->
removeAction
(
blogs
->
action
(
i
)
);
if
(
blogs
->
currentItem
()
==
-
1
)
if
(
blogs
->
currentItem
()
==
-
1
)
toolbox
->
clearFields
();
break
;
}
...
...
@@ -392,7 +392,7 @@ void MainWindow::slotBlogRemoved( int blog_id )
void
MainWindow
::
setupSystemTray
()
{
if
(
Settings
::
enableSysTrayIcon
())
{
if
(
Settings
::
enableSysTrayIcon
())
{
if
(
!
systemTray
)
{
systemTray
=
new
KStatusNotifierItem
(
this
);
systemTray
->
setIconByName
(
QLatin1String
(
"blogilo"
));
...
...
@@ -401,17 +401,12 @@ void MainWindow::setupSystemTray()
systemTray
->
setCategory
(
KStatusNotifierItem
::
ApplicationStatus
);
systemTray
->
setStatus
(
KStatusNotifierItem
::
Active
);
}
}
else
if
(
systemTray
)
{
}
else
if
(
systemTray
)
{
systemTray
->
deleteLater
();
systemTray
=
0
;
}
}
void
MainWindow
::
slotUploadAllChanges
()
{
kDebug
();
}
void
MainWindow
::
slotPostTitleChanged
(
const
QString
&
title
)
{
// kDebug();
...
...
@@ -462,7 +457,7 @@ void MainWindow::slotPublishPost()
KMessageBox
::
sorry
(
this
,
i18n
(
"You have to select a blog to publish this post to."
)
);
return
;
}
if
(
!
activePost
||
tabPosts
->
currentIndex
()
==
-
1
)
{
if
(
!
activePost
||
tabPosts
->
currentIndex
()
==
-
1
)
{
KMessageBox
::
sorry
(
this
,
i18n
(
"There is no open post to submit."
)
);
return
;
}
...
...
@@ -478,8 +473,8 @@ void MainWindow::slotRemoveAllExclude(int pos)
continue
;
}
PostEntry
*
widget
=
qobject_cast
<
PostEntry
*>
(
tabPosts
->
widget
(
i
)
);
if
(
!
widget
)
{
if
(
activePost
)
if
(
!
widget
)
{
if
(
activePost
)
widget
=
activePost
;
else
return
;
...
...
@@ -488,7 +483,7 @@ void MainWindow::slotRemoveAllExclude(int pos)
tabPosts
->
removePage
(
widget
);
widget
->
close
();
}
if
(
tabPosts
->
count
()
<
1
)
{
if
(
tabPosts
->
count
()
<
1
)
{
activePost
=
0
;
toolbox
->
resetFields
();
// actionCollection()->action("publish_post")->setEnabled( false );
...
...
@@ -501,8 +496,8 @@ void MainWindow::slotRemovePostEntry( int pos )
PostEntry
*
widget
=
qobject_cast
<
PostEntry
*>
(
tabPosts
->
widget
(
pos
)
);
if
(
!
widget
)
{
if
(
activePost
)
if
(
!
widget
)
{
if
(
activePost
)
widget
=
activePost
;
else
return
;
...
...
@@ -511,7 +506,7 @@ void MainWindow::slotRemovePostEntry( int pos )
tabPosts
->
removePage
(
widget
);
widget
->
close
();
if
(
tabPosts
->
count
()
<
1
)
{
if
(
tabPosts
->
count
()
<
1
)
{
activePost
=
0
;
toolbox
->
resetFields
();
// actionCollection()->action("publish_post")->setEnabled( false );
...
...
@@ -528,7 +523,7 @@ void MainWindow::slotNewPostOpened( BilboPost &newPost, int blog_id )
void
MainWindow
::
slotSavePostLocally
()
{
kDebug
();
if
(
activePost
&&
tabPosts
->
count
()
>
0
)
{
if
(
activePost
&&
tabPosts
->
count
()
>
0
)
{
toolbox
->
getFieldsValue
(
activePost
->
currentPost
());
activePost
->
saveLocally
();
toolbox
->
reloadLocalPosts
();
...
...
@@ -584,11 +579,11 @@ void MainWindow::keyPressEvent( QKeyEvent * event )
void
MainWindow
::
postManipulationDone
(
bool
isError
,
const
QString
&
customMessage
)
{
kDebug
();
if
(
isError
){
if
(
isError
){
KMessageBox
::
detailedError
(
this
,
i18n
(
"Submitting post failed"
),
customMessage
);
}
else
{
PostEntry
*
entry
=
qobject_cast
<
PostEntry
*>
(
sender
());
if
(
entry
){
if
(
entry
){
if
(
KMessageBox
::
questionYesNo
(
this
,
i18n
(
"%1
\n
Do you want to keep the post open?"
,
customMessage
),
QString
(),
KStandardGuiItem
::
yes
(),
KStandardGuiItem
::
no
(),
QLatin1String
(
"KeepPostOpen"
))
==
KMessageBox
::
No
)
{
slotRemovePostEntry
(
tabPosts
->
indexOf
(
entry
)
);
...
...
@@ -605,11 +600,11 @@ void MainWindow::postManipulationDone( bool isError, const QString &customMessag
void
MainWindow
::
slotBusy
(
bool
isBusy
)
{
kDebug
()
<<
"isBusy="
<<
isBusy
<<
"
\t
busyNumber="
<<
busyNumber
;
if
(
isBusy
){
if
(
isBusy
){
this
->
setCursor
(
Qt
::
BusyCursor
);
toolbox
->
setCursor
(
Qt
::
BusyCursor
);
++
busyNumber
;
if
(
!
progress
){
if
(
!
progress
){
progress
=
new
QProgressBar
(
statusBar
());
progress
->
setMinimum
(
0
);
progress
->
setMaximum
(
0
);
...
...
@@ -618,10 +613,10 @@ void MainWindow::slotBusy(bool isBusy)
}
}
else
{
--
busyNumber
;
if
(
busyNumber
<
1
){
if
(
busyNumber
<
1
){
this
->
unsetCursor
();
toolbox
->
unsetCursor
();
if
(
progress
){
if
(
progress
){
statusBar
()
->
removeWidget
(
progress
);
progress
->
deleteLater
();
progress
=
0
;
...
...
@@ -662,7 +657,7 @@ void MainWindow::uploadMediaObject()
{
UploadMediaDialog
*
uploadDlg
=
new
UploadMediaDialog
(
this
);
connect
(
uploadDlg
,
SIGNAL
(
sigBusy
(
bool
)),
SLOT
(
slotBusy
(
bool
)));
if
(
mCurrentBlogId
==
-
1
)
if
(
mCurrentBlogId
==
-
1
)
uploadDlg
->
init
(
0
);
else
uploadDlg
->
init
(
DBMan
::
self
()
->
blog
(
mCurrentBlogId
)
);
...
...
@@ -672,7 +667,7 @@ void MainWindow::slotOpenCurrentBlogInBrowser()
{
if
(
mCurrentBlogId
>
-
1
)
{
KUrl
url
(
DBMan
::
self
()
->
blog
(
mCurrentBlogId
)
->
blogUrl
()
);
if
(
url
.
isValid
())
if
(
url
.
isValid
())
KToolInvocation
::
invokeBrowser
(
url
.
url
());
else
KMessageBox
::
sorry
(
this
,
i18n
(
"Cannot find current blog URL."
));
...
...
blogilo/src/mainwindow.h
View file @
3a1ae5fc
...
...
@@ -64,7 +64,6 @@ protected slots:
void
slotSettingsChanged
();
void
slotCreateNewPost
();
void
addBlog
();
void
slotUploadAllChanges
();
void
slotPostTitleChanged
(
const
QString
&
title
);
void
slotToggleToolboxVisible
(
bool
isVisible
);
void
slotToolboxVisibilityChanged
(
bool
isVisible
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment