~ubuntu-branches/debian/lenny/kipi-plugins/lenny

« back to all changes in this revision

Viewing changes to kipi-plugins/galleryexport/gallerytalker.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-10-16 08:26:01 UTC
  • mfrom: (2.1.15 hardy)
  • Revision ID: james.westby@ubuntu.com-20081016082601-3f8ozqd96zwuuuki
Tags: 0.1.5-4
* Revert unsuccessful PicasaWebExport.patch 
  - this version suitable for inclusion in lenny
  - kipi plugins - picasa bug (Closes: #501771)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * File  : gallerytalker.h
3
3
 * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
4
4
 * Date  : 2004-11-30
5
 
 * Copyright 2004 by Renchi Raju
 
5
 * Copyright 2004 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
6
6
 *
7
7
 * This program is free software; you can redistribute it
8
8
 * and/or modify it under the terms of the GNU General
55
55
 
56
56
    static void setGallery2(bool usegallery2) {s_using_gallery2 = usegallery2;};
57
57
    static bool isGallery2() {return s_using_gallery2;};
 
58
    
 
59
    static QString getAuthToken() {return s_authToken;};
58
60
 
59
61
    bool loggedIn() const;
60
62
 
69
71
    bool addPhoto( const QString& albumName,
70
72
                   const QString& photoPath,
71
73
                   const QString& caption=QString(),
 
74
                   bool  captionIsTitle=true, bool captionIsDescription=false,
72
75
                   bool rescale=false, int maxDim=600);
73
76
 
74
77
    void cancel();
83
86
    bool       m_loggedIn;
84
87
    QByteArray m_buffer;
85
88
 
86
 
    static bool s_using_gallery2;
 
89
    static bool    s_using_gallery2;
 
90
    static QString s_authToken;
87
91
 
88
92
private:
89
93