~ubuntu-branches/ubuntu/wily/apvlv/wily

« back to all changes in this revision

Viewing changes to src/ApvlvCore.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Gaertner, Lukas Gaertner, Stefan Ritter
  • Date: 2010-12-23 15:28:02 UTC
  • mfrom: (10.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20101223152802-ll13lmtpxmylbiqz
Tags: 0.0.9.8-1
[Lukas Gaertner]
* Adopt package (Closes: #607320)

[Stefan Ritter]
* Add libdjvulibre-dev to build dependencies (Closes: #602010)
* Bump Standards-Version to 3.9.1
* Imported Upstream version 0.0.9.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
 
149
149
    virtual void setsize (int wid, int hei);
150
150
 
151
 
    virtual returnType process (int times, guint keyval);
 
151
    virtual returnType process (int has, int times, guint keyval);
152
152
 
153
153
  protected:
154
154
      ApvlvFile * mFile;
159
159
 
160
160
    int mType;
161
161
 
 
162
    gchar *mCheckMD5;
 
163
    guint mReloadTimer;
 
164
 
162
165
    string mFilestr;
163
166
 
164
167
    guint mProCmd;
211
214
 
212
215
    // status bar
213
216
    ApvlvCoreStatus *mStatus;
 
217
 
 
218
  private:
 
219
    static gboolean apvlv_core_check_reload (gpointer);
 
220
 
 
221
    gchar *checkmd5 ();
 
222
 
214
223
  };
215
224
}
216
225