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

Unified Diff: ui/views/widget/gtk_views_fixed.h

Issue 9728002: Removing deprecated GTK-Views code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | « ui/views/widget/drop_target_gtk.cc ('k') | ui/views/widget/gtk_views_fixed.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/gtk_views_fixed.h
diff --git a/ui/views/widget/gtk_views_fixed.h b/ui/views/widget/gtk_views_fixed.h
deleted file mode 100644
index 4fadbbd79d13fb60b7a0eace1855408fde887081..0000000000000000000000000000000000000000
--- a/ui/views/widget/gtk_views_fixed.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (c) 2011 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 UI_VIEWS_WIDGET_GTK_VIEWS_FIXED_H_
-#define UI_VIEWS_WIDGET_GTK_VIEWS_FIXED_H_
-#pragma once
-
-#include <gdk/gdk.h>
-#include <gtk/gtkfixed.h>
-
-// GtkViewsFixed is a subclass of GtkFixed that can give child widgets
-// a set size rather than their requisitioned size (which is actually
-// a minimum size, and that can cause issues). This behavior is
-// controlled by gtk_views_fixed_set_widget_size; the default is to
-// use the Widget's requisitioned size.
-
-G_BEGIN_DECLS
-
-#define GTK_TYPE_VIEWS_FIXED (gtk_views_fixed_get_type ())
-#define GTK_VIEWS_FIXED(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_VIEWS_FIXED, GtkViewsFixed))
-#define GTK_VIEWS_FIXED_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass), GTK_TYPE_VIEWS_FIXED, GtkViewsFixedClass))
-#define GTK_IS_VIEWS_FIXED(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_VIEWS_FIXED))
-#define GTK_IS_VIEWS_FIXED_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_VIEWS_FIXED))
-#define GTK_VIEWS_FIXED_GET_CLASS(obj) \
- (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_VIEWS_FIXED, GtkViewsFixed))
-
-typedef struct _GtkViewsFixed GtkViewsFixed;
-typedef struct _GtkViewsFixedClass GtkViewsFixedClass;
-
-struct _GtkViewsFixed {
- GtkFixed fixed;
-};
-
-struct _GtkViewsFixedClass {
- GtkFixedClass parent_class;
-};
-
-GtkWidget* gtk_views_fixed_new();
-
-GType gtk_views_fixed_get_type();
-
-// If width and height are 0, go back to using the requisitioned size.
-// Queues up a re-size on the widget.
-void gtk_views_fixed_set_widget_size(GtkWidget* widget, int width, int height);
-
-bool gtk_views_fixed_get_widget_size(GtkWidget* widget,
- int* width, int* height);
-
-G_END_DECLS
-
-#endif // UI_VIEWS_WIDGET_GTK_VIEWS_FIXED_H_
« no previous file with comments | « ui/views/widget/drop_target_gtk.cc ('k') | ui/views/widget/gtk_views_fixed.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698