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

Unified Diff: ui/gfx/size_f.h

Issue 10025004: Floating point based Point/Size/Rect and Insets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 8 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/gfx/rect_f.cc ('k') | ui/gfx/size_f.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/size_f.h
diff --git a/ui/gfx/size_f.h b/ui/gfx/size_f.h
new file mode 100644
index 0000000000000000000000000000000000000000..23b6f3bed297727281af07ab522deaf0c7211c80
--- /dev/null
+++ b/ui/gfx/size_f.h
@@ -0,0 +1,69 @@
+// Copyright (c) 2012 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_GFX_SIZE_F_H_
+#define UI_GFX_SIZE_F_H_
+#pragma once
+
+#include <string>
+
+#include "build/build_config.h"
+#include "ui/base/ui_export.h"
+
+#if !defined(ENABLE_DIP)
+#error "This class should be used only when DIP feature is enabled"
+#endif
+
+namespace gfx {
+
+// A floating versino of gfx::Size. This is copied, instead of using
+// template, to avoid conflict with m19 branch.
+// TODO(oshima): Merge this to ui/gfx/size.h using template.
+class UI_EXPORT SizeF {
+ public:
+ SizeF();
+ SizeF(float width, float height);
+ ~SizeF();
+
+ float width() const { return width_; }
+ float height() const { return height_; }
+
+ float GetArea() const { return width_ * height_; }
+
+ void SetSize(float width, float height) {
+ set_width(width);
+ set_height(height);
+ }
+
+ void Enlarge(float width, float height) {
+ set_width(width_ + width);
+ set_height(height_ + height);
+ }
+
+ void set_width(float width);
+ void set_height(float height);
+
+ bool operator==(const SizeF& s) const {
+ return width_ == s.width_ && height_ == s.height_;
+ }
+
+ bool operator!=(const SizeF& s) const {
+ return !(*this == s);
+ }
+
+ bool IsEmpty() const {
+ // Size doesn't allow negative dimensions, so testing for 0 is enough.
+ return (width_ == 0) || (height_ == 0);
+ }
+
+ std::string ToString() const;
+
+ private:
+ float width_;
+ float height_;
+};
+
+} // namespace gfx
+
+#endif // UI_GFX_SIZE_F_H_
« no previous file with comments | « ui/gfx/rect_f.cc ('k') | ui/gfx/size_f.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698