Re: [Libreoffice] Usability issue: no way to rotate an image, on a frame

2011-02-04 Thread Joshua Ismael

On 04/02/11 08:13:42 +0100

Cedric Bosdonnat  wrote:



Hello Joshua,

On Fri, 2011-02-04 at 00:58 -0600, Joshua Ismael wrote:

>  I have to rotate an image
>  but there's no way to do it,
>  at least not an obvious way:

You probably mean you can't do it in Writer, right? In that case this is
a known and old issue... thought it's no easy thing to hack.

Yes, I mean in writer.

Regards,

-- C?dric Bosdonnat LibreOffice hacker http://documentfoundation.org 
OOo Eclipse Integration developer http://cedric.bosdonnat.free.fr 
--


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] Usability issue: no way to rotate an image on a frame

2011-02-03 Thread Joshua Ismael

Hi there.

I'm using

LibreOffice 3.3.0
OOO330m19 (Build:6)
3.3.0.4 ArchLinux build-1

I have to rotate an image
but there's no way to do it,
at least not an obvious way:

- Menu Picture doesn't provide tools for that
- Click another time when selected does nothing
either (like inkscape).
- Contextual toolbars doesn't have that option
either.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] LibreOffice and (La)Tex

2011-01-27 Thread Joshua Ismael

On 27/01/11 21:09, libreoffice-requ...@lists.freedesktop.org wrote:

Date: Fri, 28 Jan 2011 02:52:24 +0300
From: Alexander
Subject: [Libreoffice] LibreOffice and (La)Tex
To:libreoffice@lists.freedesktop.org
Message-ID:
Content-Type: text/plain; charset=US-ASCII

Hi,

I want to suggest to add in LO support LaTeX as formulas generator.
Instead or jointly of Math.

Currently, LO inherited old non-wide used StarOffice syntax for formulas.

It creates inconveniences:

  * For LaTex users. They have got used its syntax and power.
  * For M$O users. They have got used GUI for type formulas.

(La)Tex make especially for scientific typography and free !

Pluses of this:

  * Power, extensible possibilities for formulas for different spheres of a 
sciences and technics.
  * LaTeX can make vector (for good quality printing and scale) and raster 
output
for WEB (in "alt" property of "img" tag can put LaTeX source as in 
Wikipedia).
  * Many users in scientific world get accustomed to its syntax.
  * Many users in Wikipedia (and other WiKi) get accustomed to its syntax.
  * Exists few GUI editors who can give LaTex output. KFormula (as minimum 
declared) and it can do LyX (but it self-sufficing editor). My be and others.
  * Inkscape can insert LaTeX formulas in drawings.
  * LaTeX can get formulas LaTeX.:)  Simplification at import/export.

When user insert formula, LO can be use LaTeX and make vector graphics (SVG ? 
Or may be EPS),
keep LaTeX source, put vector graphics in ODx and display it. This does 
system-independent.

In ODx can keep preamble and user can edit it.
And may be add possibility separate preamble and for each formula.

Troubles with formulas (first trouble: MathType formulas what displayed and 
printing as
very dirty OLE and non-edited) in OO ->  LO make hard trouble for change
LO instead M$O in areas where formulas needed.


Good Luck !

Alexander


Actually I think this is a great idea because
that would make it possible to interact with
other software.

The only problem may be the ODF requirements
(if any) to use StarOffice syntax.

Greetings, Joshua
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] LO status bar annoyances

2010-12-01 Thread Joshua Ismael



On Tue, Nov 30, 2010 at 11:26:54AM +0100, Sebastian Spaeth wrote:

BLK selects (roughly) rectangular blocks (is this useful for anything?)

D.

Block selection is useful when copying text from PDF files
that were in columns.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] Non compiling code on mono-uno-bridge (fix)

2010-10-28 Thread Joshua Ismael

/me makes easy task on /scratch/mono-uno-bridge :)


>From 61737dd0737e1c729ad82948a8e69047d2e6dce0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joshua=20Ismael=20Haase=20Hern=C3=A1ndez?= 
Date: Thu, 28 Oct 2010 20:42:30 -0500
Subject: [PATCH 1/2] Fixed non compiling code in bridge.cs

---
 scratch/mono-uno-bridge/bridge.cs |   17 -
 1 files changed, 0 insertions(+), 17 deletions(-)

diff --git a/scratch/mono-uno-bridge/bridge.cs 
b/scratch/mono-uno-bridge/bridge.cs
index 840493f..caef36e 100644
--- a/scratch/mono-uno-bridge/bridge.cs
+++ b/scratch/mono-uno-bridge/bridge.cs
@@ -487,11 +487,6 @@ public unsafe class Bridge
 seq = SequencePtr.Allocate(length, sizeof(ushort));
 Marshal.Copy((char [])managedData, 0, seq.elementsPtr, 
length);
 break;
-/*case TypeClass.BOOLEAN:
-// FIXME bool vs. byte ???
-seq = SequencePtr.Allocate(length, sizeof(byte));
-Marshal.Copy((byte [])managedData, 0, seq.elementsPtr, 
length);
-break;*/
 case TypeClass.BYTE:
 seq = SequencePtr.Allocate(length, sizeof(byte));
 Marshal.Copy((byte [])managedData, 0, seq.elementsPtr, 
length);
@@ -500,26 +495,14 @@ public unsafe class Bridge
 seq = SequencePtr.Allocate(length, sizeof(short));
 Marshal.Copy((short [])managedData, 0, seq.elementsPtr, 
length);
 break;
-/*case TypeClass.UNSIGNED_SHORT:
-seq = SequencePtr.Allocate(length, sizeof(ushort));
-Marshal.Copy((short [])managedData, 0, seq.elementsPtr, 
length);
-break; */
 case TypeClass.LONG:
 seq = SequencePtr.Allocate(length, sizeof(int));
 Marshal.Copy((int [])managedData, 0, seq.elementsPtr, 
length);
 break;
-/*case TypeClass.UNSIGNED_LONG:
-seq = SequencePtr.Allocate(length, sizeof(uint));
-Marshal.Copy((int [])managedData, 0, seq.elementsPtr, 
length);
-break; */
 case TypeClass.HYPER:
 seq = SequencePtr.Allocate(length, sizeof(long));
 Marshal.Copy((long [])managedData, 0, seq.elementsPtr, 
length);
 break;
-/*case TypeClass.UNSIGNED_HYPER:
-seq = SequencePtr.Allocate(length, sizeof(ulong));
-Marshal.Copy((long [])managedData, 0, seq.elementsPtr, 
length);
-break; */
 case TypeClass.FLOAT:
 seq = SequencePtr.Allocate(length, sizeof(float));
 Marshal.Copy((float [])managedData, 0, seq.elementsPtr, 
length);
-- 
1.7.3.2

>From 1b1b48b09ebf32644bb91d10d94c41f13bda2dba Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joshua=20Ismael=20Haase=20Hern=C3=A1ndez?= 
Date: Thu, 28 Oct 2010 22:58:14 -0500
Subject: [PATCH 2/2] fix non compiling code on mono-uno-bridge

---
 scratch/mono-uno-bridge/cli_environment.cs |5 -
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/scratch/mono-uno-bridge/cli_environment.cs 
b/scratch/mono-uno-bridge/cli_environment.cs
index 91a2970..3d6b200 100644
--- a/scratch/mono-uno-bridge/cli_environment.cs
+++ b/scratch/mono-uno-bridge/cli_environment.cs
@@ -151,11 +151,6 @@ public class Cli_environment
 oid = createKey(oid, type);
 ret = m_objects[oid];
 }
-/*if (ret != null)
-{
-WeakReference weakIface = (WeakReference)ret;
-ret = weakIface.Target;
-} */
 
 if (ret == null)
 m_objects.Remove(oid);
-- 
1.7.3.2

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice