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

Side by Side Diff: pdf/resource_consts.h

Issue 294793003: Add the pdf plugin's source in src\pdf. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: review comments Created 6 years, 7 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) 2010 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 PDF_RESOURCE_RESOURCE_CONSTS_H_
6 #define PDF_RESOURCE_RESOURCE_CONSTS_H_
7
8 #include "base/basictypes.h"
9
10 namespace chrome_pdf {
11
12 const int kDragTimerMs = 50;
13 const double kMinZoom = 0.1;
14 const double kMaxZoom = 10.0;
15 const double kZoomStep = 1.2;
16
17 const uint32 kFadingTimeoutMs = 50;
18
19 const uint32 kToolbarId = 10;
20 const uint32 kThumbnailsId = 11;
21 const uint32 kProgressBarId = 12;
22 const uint32 kPageIndicatorId = 13;
23 const uint32 kFitToPageButtonId = 100;
24 const uint32 kFitToWidthButtonId = 101;
25 const uint32 kZoomOutButtonId = 102;
26 const uint32 kZoomInButtonId = 103;
27 const uint32 kSaveButtonId = 104;
28 const uint32 kPrintButtonId = 105;
29
30 const uint32 kAutoScrollId = 200;
31
32 // fading_rect.left = button_rect.left - kToolbarFadingOffsetLeft
33 const int32 kToolbarFadingOffsetLeft = 40;
34 // fading_rect.top = button_rect.top - kToolbarFadingOffsetTop
35 const int32 kToolbarFadingOffsetTop = 40;
36 // fading_rect.right = button_rect.right + kToolbarFadingOffsetRight
37 const int32 kToolbarFadingOffsetRight = 10;
38 // fading_rect.bottom = button_rect.bottom + kToolbarFadingOffsetBottom
39 const int32 kToolbarFadingOffsetBottom = 8;
40
41 const int32 kProgressOffsetLeft = 8;
42 const int32 kProgressOffsetBottom = 8;
43
44 // Width of the thumbnails control.
45 const int32 kThumbnailsWidth = 196;
46
47 } // namespace chrome_pdf
48
49 #endif // PDF_RESOURCE_RESOURCE_CONSTS_H_
OLDNEW
« pdf/chunk_stream.h ('K') | « pdf/resource.h ('k') | pdf/thumbnail_control.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698