~ubuntu-branches/ubuntu/karmic/photoprint/karmic

« back to all changes in this revision

Viewing changes to printerqueueswrapper.h

  • Committer: Bazaar Package Importer
  • Author(s): Milan Zamazal
  • Date: 2007-05-01 16:32:13 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070501163213-ni1933khtg9fdvn5
Tags: 0.3.5-2
Move to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        int GetPrinterCount();
12
12
        char *GetPrinterName(int idx);
13
13
        char *GetPrinterDriver(const char *printername);
 
14
        char *GetPrinterDriver();
 
15
 
 
16
        const char *GetPrinterQueue();
 
17
        void SetPrinterQueue(const char *queue);
 
18
 
 
19
        char *GetDriver();
 
20
        char *GetPPD();
 
21
 
 
22
        const char *GetCustomCommand();
 
23
        void SetCustomCommand(const char *cmd);
 
24
 
 
25
        bool InitialiseJob();
 
26
        void InitialisePage();
 
27
        void EndPage();
 
28
        void EndJob();
 
29
        void CancelJob();
 
30
 
 
31
        int WriteData(const char *data,int bytecount);
 
32
 
 
33
        struct pqinfo *GetPQInfo();
 
34
 
14
35
        protected:
15
36
        struct pqinfo *queues;
16
 
        friend class PrintOutput;
17
37
};
18
38
 
19
39
#endif