summaryrefslogtreecommitdiffstats
path: root/chrome/browser/printing/print_dialog_gtk.h
blob: faeada9c36812209f37f4cda1a78c34df6a8c7d0 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_PRINTING_PRINT_DIALOG_GTK_H_
#define CHROME_BROWSER_PRINTING_PRINT_DIALOG_GTK_H_
#pragma once

#include <gtk/gtk.h>

#include "app/gtk_signal.h"
#include "base/basictypes.h"
#include "base/file_path.h"

class Browser;

typedef struct _GtkPrintJob GtkPrintJob;

// Currently this dialog only allows the user to choose a printer.
class PrintDialogGtk {
 public:
  static bool DialogShowing();

  // Called on the IO thread.
  static void CreatePrintDialogForPdf(const FilePath& path);

 private:
  explicit PrintDialogGtk(const FilePath& path_to_pdf);
  ~PrintDialogGtk();

  static void CreateDialogImpl(const FilePath& path);

  CHROMEGTK_CALLBACK_1(PrintDialogGtk, void, OnResponse, gint);

  static void OnJobCompletedThunk(GtkPrintJob* print_job,
                                  gpointer user_data,
                                  GError* error);
  void OnJobCompleted(GtkPrintJob* job, GError* error);

  FilePath path_to_pdf_;

  GtkWidget* dialog_;

  Browser* browser_;

  DISALLOW_COPY_AND_ASSIGN(PrintDialogGtk);
};

#endif  // CHROME_BROWSER_PRINTING_PRINT_DIALOG_GTK_H_