summaryrefslogtreecommitdiff
path: root/svx/inc/svx/svdograf.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-01-20 15:37:25 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-01-20 16:36:54 -0500
commit88869c1dd907c4851cd8671f0822a0d7c4fd3f36 (patch)
treebd647d7317c5c98ac2017beb856852bf9d84a2f3 /svx/inc/svx/svdograf.hxx
parent6964157be89119fe58347f7281207205236b05a6 (diff)
String to rtl::OUString.
Diffstat (limited to 'svx/inc/svx/svdograf.hxx')
-rw-r--r--svx/inc/svx/svdograf.hxx13
1 files changed, 8 insertions, 5 deletions
diff --git a/svx/inc/svx/svdograf.hxx b/svx/inc/svx/svdograf.hxx
index f11a1eb6bb17..eb2235f995e3 100644
--- a/svx/inc/svx/svdograf.hxx
+++ b/svx/inc/svx/svdograf.hxx
@@ -83,6 +83,9 @@ public:
class GraphicObject;
class SdrGraphicLink;
+/**
+ * This class represents an embedded or linked bitmap graphic object.
+ */
class SVX_DLLPUBLIC SdrGrafObj : public SdrRectObj
{
private:
@@ -100,8 +103,8 @@ private:
void ImpSetAttrToGrafInfo(); // Werte vom Pool kopieren
GraphicAttr aGrafInfo;
- String aFileName; // Wenn es sich um einen Link handelt, steht hier der Dateiname drin.
- String aFilterName;
+ rtl::OUString aFileName; // Wenn es sich um einen Link handelt, steht hier der Dateiname drin.
+ rtl::OUString aFilterName;
GraphicObject* pGraphic; // Zur Beschleunigung von Bitmapausgaben, besonders von gedrehten.
SdrGraphicLink* pGraphicLink; // Und hier noch ein Pointer fuer gelinkte Grafiken
bool bMirrored:1; // True bedeutet, die Grafik ist horizontal, d.h. ueber die Y-Achse gespiegelt auszugeben.
@@ -158,12 +161,12 @@ public:
void ForceSwapIn() const;
void ForceSwapOut() const;
- void SetGraphicLink(const String& rFileName, const String& rFilterName);
+ void SetGraphicLink(const rtl::OUString& rFileName, const String& rFilterName);
void ReleaseGraphicLink();
bool IsLinkedGraphic() const;
- const String& GetFileName() const { return aFileName; }
- const String& GetFilterName() const { return aFilterName; }
+ const rtl::OUString& GetFileName() const;
+ const rtl::OUString& GetFilterName() const;
void StartAnimation(OutputDevice* pOutDev, const Point& rPoint, const Size& rSize, long nExtraData=0L);