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

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

Issue 7646003: Support auto-hide taskbar for panels on Windows. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_PANELS_BOTTOM_BAR_H_
6 #define CHROME_BROWSER_UI_PANELS_BOTTOM_BAR_H_
7 #pragma once
8
9 // The file contains the helper functions to deal with the top-most system/app
10 // bar located at the bottom of the screen, like Windows taskbar or MacOSX dock.
11 // This bottom bar might be set to auto-hide.
12
13 // Returns true if the bottom bar is set to auto-hide. In this mode, the bottom
14 // bar will remain hidden most of the time and could be brought up when the user
15 // move the mouse to the bottom of the screen.
16 bool IsBottomBarInAutoHideMode();
Dmitry Titov 2011/08/17 22:56:38 We should have a class here, with static members.
jianli 2011/08/22 20:44:42 Done.
17
18 // Returns the fixed height of the bottom bar. Note that the height remains
19 // unchanged no matter whether the bottom bar is brought up or down.
20 int GetBottomBarHeight();
21
22 // Returns true if the bottom bar is fully brought up from the hidden mode.
23 // Otherwise, false is returned when the bottom bar is partially up during
24 // animation or hidden.
25 bool IsBottomBarFullyVisible();
Dmitry Titov 2011/08/17 22:56:38 It seems there can be a single method returning en
jianli 2011/08/22 20:44:42 Done.
26
27 // Returns true if the bottom bar is completely hidden.
28 bool IsBottomBarHidden();
29
30 #endif // CHROME_BROWSER_UI_PANELS_BOTTOM_BAR_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/panels/bottom_bar_cocoa.mm » ('j') | chrome/browser/ui/panels/bottom_bar_cocoa.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698