mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
ed2872074e
This is the easiest way to transition to Qt5.
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
// vim: set ts=4 sts=4 sw=4 et:
|
|
/* This file is part of the KDE project
|
|
Copyright (C) 2000 David Faure <faure@kde.org>
|
|
Copyright (C) 2002-2003 Alexander Kellett <lypanov@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) version 3.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
#ifndef BOOKMARKINFOWIDGET_H
|
|
#define BOOKMARKINFOWIDGET_H
|
|
|
|
#include <kbookmark.h>
|
|
#include <QWidget>
|
|
|
|
class KBookmarkModel;
|
|
class BookmarkListView;
|
|
class EditCommand;
|
|
|
|
class KLineEdit;
|
|
|
|
class QTimer;
|
|
|
|
class BookmarkInfoWidget : public QWidget {
|
|
Q_OBJECT
|
|
public:
|
|
explicit BookmarkInfoWidget(BookmarkListView * lv, KBookmarkModel* model, QWidget * = 0);
|
|
|
|
KBookmark bookmark() { return m_bk; }
|
|
void updateStatus(); //FIXME where was this called?
|
|
|
|
public Q_SLOTS:
|
|
void slotTextChangedURL(const QString &);
|
|
void slotTextChangedTitle(const QString &);
|
|
void slotTextChangedComment(const QString &);
|
|
|
|
void slotUpdate();
|
|
|
|
void commitChanges();
|
|
void commitTitle();
|
|
void commitURL();
|
|
void commitComment();
|
|
|
|
private:
|
|
void showBookmark(const KBookmark &bk);
|
|
EditCommand * titlecmd, * urlcmd, * commentcmd;
|
|
QTimer * timer;
|
|
KLineEdit *m_title_le, *m_url_le,
|
|
*m_comment_le;
|
|
KLineEdit *m_visitdate_le, *m_credate_le,
|
|
*m_visitcount_le;
|
|
KBookmark m_bk;
|
|
KBookmarkModel* m_model;
|
|
BookmarkListView * mBookmarkListView;
|
|
};
|
|
|
|
#endif
|