greghaynes / kdelicious

A Konqueror del.icio.us plugin

This URL has Read+Write access

laurent Montel (author)
Thu Apr 09 00:12:54 -0700 2009
greghaynes (committer)
Thu Apr 09 00:12:54 -0700 2009
kdelicious / createbookmarkdialog.h
100644 35 lines (24 sloc) 0.565 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef KDELICIOUSPLUGIN_CREATE_BOOKMARK_DIALOG_H
#define KDELICIOUSPLUGIN_CREATE_BOOKMARK_DIALOG_H
 
#include <KDialog>
 
namespace Ui
{
class NewBookmarkWidget;
}
 
class CreateBookmarkDialog
: public KDialog
{
 
public:
CreateBookmarkDialog( QWidget *parent = 0 );
 
void setTitle( const QString &title );
void setUrl( const QString &url );
QString getUrl() const;
QString getTitle() const;
QString getDescription() const;
QString getTags() const;
bool replace() const;
bool shared() const;
 
private:
 
Ui::NewBookmarkWidget *ui;
 
};
 
#endif