[impress] undraw polygons

2015-10-26 Thread foolsgarden
Hi all,

can someone tell me how to undraw/remove a polypolygon from a canvas?
I found "CompositeOp" of "CanvasGraphic" and thought I could just set it to 
clear ( setCompositeOp( cppcanvas::CanvasGraphic::CLEAR ); )  before drawing 
and then just redraw the same polypolygon.
But it does not work.
I just want to undraw a painted polypolygon in 
aoo-trunk/main/slideshow/source/engine/slide/userpaintoverlay.cxx.
I also tried to draw some polpolygons with alpha set to different values but 
they all look the same.
(All drawn with 100% alpha)
drawing a polypolygon with alpha set to 50 (alpha did not work for me):
pPolyPoly->setStrokeWidth(50);
pPolyPoly->setRGBALineColor( ::cppcanvas::makeColor( 100, 10, 10, 10 ) );
pPolyPoly->draw();
-
Der perfekte Zeitpunkt seinen Gasversorger zu wechseln:
http://www.anpa.de/index.php?action=gasvergleich



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



[impress]erase annotations

2015-06-21 Thread foolsgarden
Hi all,

can someone tell me if it was possible to erase annotations in prior versions 
of impress?
I mean if one starts the presentation one can use the mouse as a pen.
One can draw stuff but not delete these annotaions in the version I have.
Looks like there is some code snippets but it is not complete/used.
Was this implemented in prior versions and remobed due to some issues
-
Der perfekte Zeitpunkt seinen Stromanbieter zu wechseln:
http://www.anpa.de/index.php?action=stromvergleich



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: [BUILDING]Missing vcl resource

2015-05-18 Thread foolsgarden
Thought I might try to create the files, that aoo is looking for. So cleaned 
everything and used:
configure \
--with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2
 \
--with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz\
-enable-symbols\
--enable-dbgutil\
--with-package-format=installed\
 --with-lang=de

but still no luck. Only vclen-US.res is created and no vclde-DE.res (what I 
hoped would happen).

I just want to build aoo and tinker with the code and then rebuild and so on.
So no packaging or something special. Just build the enUS version and start it.

Any ideas?


--- Ursprüngliche Nachricht ---
Von: foolsgar...@anpa.de
Datum: 09.05.2015 09:17:14
An: dev@openoffice.apache.org
Betreff: [BUILDING]Missing vcl resource

 Hi all,

 I'm trying to build AOO first time.
 os: ubuntu 12.04
 aoo: trunk

 What I did:
 followed the steps at: 
 https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO


 1.Download the source: svn co 
 https://svn.apache.org/repos/asf/openoffice/trunk
 aoo
 2.Configure: cd main/ ; autoconf ; ./configure some-switches
 ; ./bootstrap
 3.Build: source platform-dependend-name.sh ; cd instsetoo_native
 ; build --all
 4.Wait for an hour or more (The build can take up to 3 hours.)
 5.Enjoy

 Well, everything went ok until I reached step 5.

 Configure line:
 configure \
 --with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2
 \
 --with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz\

 -enable-symbols\
 --enable-dbgutil\
 --with-package-format=installed


 When I tried to start aoo I got a message which told me, that libsofficeapp.so
 could not be found.
 So I set LD_LIBRARY_PATH to .../aoo-trunk/main/solver/420/unxlngi6.pro/lib
 and the error went away.
 Now I get the error:

 Missing vcl resource. This indicates that files vital to localization
 are missing. You might have a corrupt installation.
 terminate called after throwing an instance of 
 'com::sun::star::uno::RuntimeException'


 After some searching I found out that this may happen if the vclen-US.res
 file is missing.
 But the file is there.

 After some sleepless nights ;) I looked at strace, it looks like aoo tries
 to get vclde-DE.res instead of vclen-US.res.
 But there is no vclde-DE.res.

 After some cleans and rebuilds I found this line when configuring:
 checking which languages to be built... en-US

 So why is aoo trying to find the vclde-DE.res file while en-US was 
 configured???


 Days and nights vanished and I tried to set  LC_ALL but then got a gtk error.


 Can someone tell me how I can run aoo, please?


 P.S. Can someone add a line which says that one has to set subject to 
 subscribe
 when subscribing to the lists.
 Or adapt the links at 
 https://openoffice.apache.org/mailing-lists.html#development-mailing-list-public
 so they
 include subscribe as subject when clicking on the subscribe links.

 The link at http://www.openoffice.org/ml_guidelines.html at the Format:
 Plaintext section leads me to a site, I only
 can view the Privacy Policy (dunno, maybe it's just my browser).

 -
 Unzufrieden mit Ihrem DSL-Anschluss? Jetzt günstigsten Anbieter finden:
 http://www.anpa.de/index.php?action=dslvergleich



 -
 To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
 For additional commands, e-mail: dev-h...@openoffice.apache.org



-
Der perfekte Zeitpunkt seinen Stromanbieter zu wechseln:
http://www.anpa.de/index.php?action=stromvergleich



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



[BUILDING]Missing vcl resource

2015-05-09 Thread foolsgarden
Hi all,

I'm trying to build AOO first time.
os: ubuntu 12.04
aoo: trunk

What I did:
followed the steps at: 
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO

1.Download the source: svn co 
https://svn.apache.org/repos/asf/openoffice/trunk aoo
2.Configure: cd main/ ; autoconf ; ./configure some-switches ; ./bootstrap
3.Build: source platform-dependend-name.sh ; cd instsetoo_native ; build 
--all
4.Wait for an hour or more (The build can take up to 3 hours.)
5.Enjoy

Well, everything went ok until I reached step 5.

Configure line:
configure \
--with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2
 \
--with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz\
-enable-symbols\
--enable-dbgutil\
--with-package-format=installed


When I tried to start aoo I got a message which told me, that libsofficeapp.so 
could not be found.
So I set LD_LIBRARY_PATH to .../aoo-trunk/main/solver/420/unxlngi6.pro/lib and 
the error went away.
Now I get the error:

Missing vcl resource. This indicates that files vital to localization are 
missing. You might have a corrupt installation.
terminate called after throwing an instance of 
'com::sun::star::uno::RuntimeException'

After some searching I found out that this may happen if the vclen-US.res 
file is missing.
But the file is there.

After some sleepless nights ;) I looked at strace, it looks like aoo tries to 
get vclde-DE.res instead of vclen-US.res.
But there is no vclde-DE.res.

After some cleans and rebuilds I found this line when configuring:
checking which languages to be built... en-US

So why is aoo trying to find the vclde-DE.res file while en-US was configured???

Days and nights vanished and I tried to set  LC_ALL but then got a gtk error.

Can someone tell me how I can run aoo, please?


P.S. Can someone add a line which says that one has to set subject to 
subscribe when subscribing to the lists.
Or adapt the links at 
https://openoffice.apache.org/mailing-lists.html#development-mailing-list-public
 so they
include subscribe as subject when clicking on the subscribe links.
The link at http://www.openoffice.org/ml_guidelines.html at the Format: 
Plaintext section leads me to a site, I only
can view the Privacy Policy (dunno, maybe it's just my browser).
-
Unzufrieden mit Ihrem DSL-Anschluss? Jetzt günstigsten Anbieter finden:
http://www.anpa.de/index.php?action=dslvergleich



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org