Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1846)

Unified Diff: chrome/browser/gtk/import_dialog_gtk.h

Issue 1604025: gtk: Disable the "Import" button on Import Bookmarks dialog if there is no checkbox checked. (Closed)
Patch Set: " Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/gtk/import_dialog_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/import_dialog_gtk.h
diff --git a/chrome/browser/gtk/import_dialog_gtk.h b/chrome/browser/gtk/import_dialog_gtk.h
index 1d3f5e58ffce31cd8c34cc31c90db44eb27522b5..8b2b2207d0717fa8d8b04a94e4df63d0cefbc03a 100644
--- a/chrome/browser/gtk/import_dialog_gtk.h
+++ b/chrome/browser/gtk/import_dialog_gtk.h
@@ -5,6 +5,7 @@
#ifndef CHROME_BROWSER_GTK_IMPORT_DIALOG_GTK_H_
#define CHROME_BROWSER_GTK_IMPORT_DIALOG_GTK_H_
+#include "app/gtk_signal.h"
#include "chrome/browser/importer/importer.h"
class AccessibleWidgetHelper;
@@ -25,12 +26,18 @@ class ImportDialogGtk : public ImportObserver {
ImportDialogGtk(GtkWindow* parent, Profile* profile, int initial_state);
~ImportDialogGtk();
- static void HandleOnResponseDialog(GtkWidget* widget,
- int response,
- ImportDialogGtk* user_data) {
- user_data->OnDialogResponse(widget, response);
- }
- void OnDialogResponse(GtkWidget* widget, int response);
+ // Handler to respond to OK or Cancel responses from the dialog.
+ CHROMEGTK_CALLBACK_1(ImportDialogGtk, void, OnDialogResponse, int);
+
+ // Handler to respond to widget clicked actions from the dialog.
+ CHROMEGTK_CALLBACK_0(ImportDialogGtk, void, OnDialogWidgetClicked);
+
+ // Enable or disable the dialog buttons depending on the state of the
+ // checkboxes.
+ void UpdateDialogButtons();
+
+ // Create a bitmask from the checkboxes of the dialog.
+ uint16 GetCheckedItems();
// Parent window
GtkWindow* parent_;
« no previous file with comments | « no previous file | chrome/browser/gtk/import_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698