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

Unified Diff: pdf/button.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 and sync past DEPS roll to fix gyp 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pdf/OWNERS ('k') | pdf/button.cc » ('j') | pdf/pdf.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/button.h
===================================================================
--- pdf/button.h (revision 0)
+++ pdf/button.h (revision 0)
@@ -0,0 +1,71 @@
+// Copyright (c) 2010 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 PDF_BUTTON_H_
+#define PDF_BUTTON_H_
+
+#include "pdf/control.h"
+#include "ppapi/cpp/image_data.h"
+#include "ppapi/cpp/rect.h"
+
+namespace chrome_pdf {
+
+class Button : public Control {
+ public:
+ enum ButtonEventIds {
+ EVENT_ID_BUTTON_CLICKED,
+ EVENT_ID_BUTTON_STATE_CHANGED,
+ };
+
+ enum ButtonStyle {
+ BUTTON_CLICKABLE,
+ BUTTON_STATE
+ };
+
+ enum ButtonState {
+ BUTTON_NORMAL,
+ BUTTON_HIGHLIGHTED,
+ BUTTON_PRESSED,
+ BUTTON_PRESSED_STICKY,
+ };
+
+ Button();
+ virtual ~Button();
+ virtual bool CreateButton(uint32 id,
+ const pp::Point& origin,
+ bool visible,
+ Control::Owner* delegate,
+ ButtonStyle style,
+ const pp::ImageData& face_normal,
+ const pp::ImageData& face_highlighted,
+ const pp::ImageData& face_pressed);
+
+ virtual void Paint(pp::ImageData* image_data, const pp::Rect& rc);
+ virtual bool HandleEvent(const pp::InputEvent& event);
+ virtual void OnEventCaptureReleased();
+ virtual void Show(bool visible, bool invalidate);
+ virtual void AdjustTransparency(uint8 transparency, bool invalidate);
+
+ ButtonState state() const { return state_; }
+ bool IsPressed() const { return state() == BUTTON_PRESSED_STICKY; }
+ void SetPressedState(bool pressed);
+
+ private:
+ void OnButtonClicked();
+
+ const pp::ImageData& GetCurrentImage();
+ void ChangeState(ButtonState new_state, bool force);
+
+ ButtonStyle style_;
+ ButtonState state_;
+ bool is_pressed_;
+
+ pp::ImageData normal_;
+ pp::ImageData highlighted_;
+ pp::ImageData pressed_;
+};
+
+} // namespace chrome_pdf
+
+#endif // PDF_BUTTON_H_
Property changes on: pdf\button.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « pdf/OWNERS ('k') | pdf/button.cc » ('j') | pdf/pdf.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698