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

Unified Diff: chrome/browser/ui/gtk/extensions/media_galleries_dialog_gtk.h

Issue 10826129: Media galleries: configuration dialog controller and GTK impl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix non-gtk builds Created 8 years, 4 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
Index: chrome/browser/ui/gtk/extensions/media_galleries_dialog_gtk.h
diff --git a/chrome/browser/ui/gtk/extensions/media_galleries_dialog_gtk.h b/chrome/browser/ui/gtk/extensions/media_galleries_dialog_gtk.h
new file mode 100644
index 0000000000000000000000000000000000000000..faf90dcfe5cd87b92935507c6be27d84e7fd84d8
--- /dev/null
+++ b/chrome/browser/ui/gtk/extensions/media_galleries_dialog_gtk.h
@@ -0,0 +1,80 @@
+// Copyright (c) 2012 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_UI_GTK_EXTENSIONS_MEDIA_GALLERIES_DIALOG_GTK_H_
+#define CHROME_BROWSER_UI_GTK_EXTENSIONS_MEDIA_GALLERIES_DIALOG_GTK_H_
+
+#include <gtk/gtk.h>
+#include <map>
+
+#include "base/compiler_specific.h"
+#include "chrome/browser/media_gallery/media_galleries_dialog_controller.h"
+#include "chrome/browser/ui/gtk/constrained_window_gtk.h"
+#include "ui/base/gtk/gtk_signal.h"
+#include "ui/base/gtk/owned_widget_gtk.h"
+
+namespace chrome {
+
+class MediaGalleriesDialogController;
+
+// The media galleries configuration view for Gtk. It will immediately show
+// upon construction.
+class MediaGalleriesDialogGtk : public MediaGalleriesDialog,
+ public ConstrainedWindowGtkDelegate {
+ public:
+ explicit MediaGalleriesDialogGtk(MediaGalleriesDialogController* controller);
+ virtual ~MediaGalleriesDialogGtk() {}
+
+ // MediaGalleriesDialog implementation:
+ virtual void UpdateGallery(const MediaGalleryPrefInfo* gallery,
+ bool permitted) OVERRIDE;
+
+ // ConstrainedWindowGtkDelegate implementation:
+ virtual GtkWidget* GetWidgetRoot() OVERRIDE;
+ virtual GtkWidget* GetFocusWidget() OVERRIDE;
+ virtual void DeleteDelegate() OVERRIDE;
+
+ // Event callbacks.
+ CHROMEGTK_CALLBACK_0(MediaGalleriesDialogGtk, void, OnToggled);
+ CHROMEGTK_CALLBACK_0(MediaGalleriesDialogGtk, void, OnAddFolder);
+ CHROMEGTK_CALLBACK_0(MediaGalleriesDialogGtk, void, OnConfirm);
+ CHROMEGTK_CALLBACK_0(MediaGalleriesDialogGtk, void, OnCancel);
+
+ private:
+ typedef std::map<const MediaGalleryPrefInfo*, GtkWidget*> CheckboxMap;
+
+ // Creates the widget hierarchy.
+ void InitWidgets();
+
+ // Updates the state of the confirm button. It will be disabled when
+ void UpdateConfirmButtonState();
+
+ MediaGalleriesDialogController* controller_;
+ ConstrainedWindowGtk* window_;
+
+ // The root widget for the dialog.
+ ui::OwnedWidgetGtk contents_;
+
+ // The confirm button.
+ GtkWidget* confirm_;
+
+ // This widget holds all the checkboxes.
+ GtkWidget* checkbox_container_;
+
+ // A map from MediaGalleryPrefInfo struct (owned by controller) to the
+ // GtkCheckButton that controls it.
+ CheckboxMap checkbox_map_;
+
+ // When true, checkbox toggles are ignored (used when updating the UI).
+ bool ignore_toggles_;
+
+ // True if the user has pressed accept.
+ bool accepted_;
+
+ DISALLOW_COPY_AND_ASSIGN(MediaGalleriesDialogGtk);
+};
+
+} // namespace chrome
+
+#endif // CHROME_BROWSER_UI_GTK_EXTENSIONS_MEDIA_GALLERIES_DIALOG_GTK_H_

Powered by Google App Engine
This is Rietveld 408576698