summaryrefslogtreecommitdiff
path: root/chromium/ui/gfx/insets_f.h
blob: 045b8a02e8e2ba367fedaa85edf5d5f2d01999b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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_INSETS_F_H_
#define UI_GFX_INSETS_F_H_

#include <string>

#include "build/build_config.h"
#include "ui/gfx/gfx_export.h"
#include "ui/gfx/insets_base.h"

namespace gfx {

// A floating versin of gfx::Insets.
class UI_EXPORT InsetsF : public InsetsBase<InsetsF, float> {
 public:
  InsetsF();
  InsetsF(float top, float left, float bottom, float right);
  ~InsetsF();

  // Returns a string representation of the insets.
  std::string ToString() const;
};

#if !defined(COMPILER_MSVC)
extern template class InsetsBase<InsetsF, float>;
#endif

}  // namespace gfx

#endif  // UI_GFX_INSETS_F_H_