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

Side by Side Diff: chrome/browser/ui/panels/panel.h

Issue 9547007: Fix handling of minimized panel count (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_H_ 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_H_
6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ 6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/ui/browser_window.h" 9 #include "chrome/browser/ui/browser_window.h"
10 10
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 NativePanel* native_panel() { return native_panel_; } 218 NativePanel* native_panel() { return native_panel_; }
219 Browser* browser() const { return browser_; } 219 Browser* browser() const { return browser_; }
220 220
221 // May be NULL if panel is newly created and has not been positioned yet. 221 // May be NULL if panel is newly created and has not been positioned yet.
222 PanelStrip* panel_strip() const { return panel_strip_; } 222 PanelStrip* panel_strip() const { return panel_strip_; }
223 223
224 // Sets the current panel strip that contains this panel. 224 // Sets the current panel strip that contains this panel.
225 void set_panel_strip(PanelStrip* new_strip) { panel_strip_ = new_strip; } 225 void set_panel_strip(PanelStrip* new_strip) { panel_strip_ = new_strip; }
226 226
227 ExpansionState expansion_state() const { return expansion_state_; } 227 ExpansionState expansion_state() const { return expansion_state_; }
228 ExpansionState old_expansion_state() const { return old_expansion_state_; }
229 const gfx::Size& min_size() const { return min_size_; } 228 const gfx::Size& min_size() const { return min_size_; }
230 const gfx::Size& max_size() const { return max_size_; } 229 const gfx::Size& max_size() const { return max_size_; }
231 bool auto_resizable() const { return auto_resizable_; } 230 bool auto_resizable() const { return auto_resizable_; }
232 231
233 bool draggable() const; 232 bool draggable() const;
234 233
235 // The restored size is the size of the panel when it is expanded. 234 // The restored size is the size of the panel when it is expanded.
236 gfx::Size restored_size() const { return restored_size_; } 235 gfx::Size restored_size() const { return restored_size_; }
237 void set_restored_size(const gfx::Size& size) { restored_size_ = size; } 236 void set_restored_size(const gfx::Size& size) { restored_size_ = size; }
238 237
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 gfx::Size max_size_; 309 gfx::Size max_size_;
311 310
312 // True if this panel auto resizes based on content. 311 // True if this panel auto resizes based on content.
313 bool auto_resizable_; 312 bool auto_resizable_;
314 313
315 // Platform specifc implementation for panels. It'd be one of 314 // Platform specifc implementation for panels. It'd be one of
316 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa. 315 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa.
317 NativePanel* native_panel_; // Weak, owns us. 316 NativePanel* native_panel_; // Weak, owns us.
318 317
319 ExpansionState expansion_state_; 318 ExpansionState expansion_state_;
320 ExpansionState old_expansion_state_;
321 319
322 // Indicates whether the panel app icon is visible in the taskbar. 320 // Indicates whether the panel app icon is visible in the taskbar.
323 bool app_icon_visible_; 321 bool app_icon_visible_;
324 322
325 content::NotificationRegistrar registrar_; 323 content::NotificationRegistrar registrar_;
326 324
327 DISALLOW_COPY_AND_ASSIGN(Panel); 325 DISALLOW_COPY_AND_ASSIGN(Panel);
328 }; 326 };
329 327
330 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ 328 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698