Re: [Plplot-devel] wxwidgets-related dependencies

2016-12-29 Thread p.d.rosenberg
Hi Alan I don't know enough about cmake and how it creates visual studio projects/solutions to know what will work. All I know is that cmake generates a visual studio solution, which when opened in visual studio contains multiple projects, one for each target (library and executable) and some o

Re: [Plplot-devel] wxwidgets-related dependencies

2016-12-29 Thread Alan W. Irwin
On 2016-12-29 08:47- p.d.rosenb...@gmail.com wrote: > Hi Alan > I'm not sure if that [test_x00c_wxPLViewer, etc. targets] would work. If I execute (I.e. Run or debug) that project, would it run the example? Hi Phil: If the custom target has no associated COMMAND, what should happen is inste

Re: [Plplot-devel] wxwidgets-related dependencies

2016-12-29 Thread p.d.rosenberg
Hi Alan I'm not sure if that would work. If I execute (I.e. Run or debug) that project, would it run the example? Sent from my Windows 10 phone From: Alan W. Irwin Sent: 29 December 2016 00:26 To: Phil Rosenberg; Pedro Vicente; Laurent Berger; PLplot development list Subject: RE: wxwidgets-relat

Re: [Plplot-devel] wxwidgets-related dependencies

2016-12-28 Thread Alan W. Irwin
On 2016-12-28 19:14- p.d.rosenb...@gmail.com wrote: > Hi Alan > The problem with building all is that it rebuilds all the examples. When using static libs this means relinking them as well and the whole process takes a few minutes, rather than the few seconds to build one example. I agree "a

Re: [Plplot-devel] wxwidgets-related dependencies

2016-12-28 Thread p.d.rosenberg
Hi Alan The problem with building all is that it rebuilds all the examples. When using static libs this means relinking them as well and the whole process takes a few minutes, rather than the few seconds to build one example. Phil Sent from my Windows 10 phone From: Alan W. Irwin Sent: 28 Dec

Re: [Plplot-devel] wxwidgets-related dependencies

2016-12-28 Thread Alan W. Irwin
On 2016-12-28 09:14- p.d.rosenb...@gmail.com wrote: > The deal is that although there is no build time dependency of the examples upon wxPLViewer, there is a run time dependency. Does that make sense? Yes. As a matter of convenience you would like _all_ your changes to build rather than the

Re: [Plplot-devel] wxwidgets-related dependencies

2016-12-28 Thread p.d.rosenberg
Hi Alan Sorry for top posting, but I’m on my phone which doesn't seem to indent older text so I think this is simpler. A common scenario for me (I thought this may have been Laurent’s issue, but it seems not) is that I make a change in the wxWidgets part of plplot, then in visual studio I right

[Plplot-devel] wxwidgets-related dependencies

2016-12-27 Thread Alan W. Irwin
On 2016-12-27 23:41- p.d.rosenb...@gmail.com wrote: > Hi Laurent > I know you have said you have cleaned and you have rebuilt. However, there > may be a build tree dependency issue catching us out. Can you ensure you > specifically rebuild the wxPlviewer project by right clicking it and > s

[Plplot-devel] wxwidgets dpi, length, and width issue fixed

2015-08-23 Thread Alan W. Irwin
Hi Phil: According to what you have stated and documented and our recent wxwidgets changes, I was expecting that the -dpi command-line parameter would work with -dev wxwidgets to change the text size. That did not work at all until I fixed a wxwidgets dpi, length, and width bug (commit id 4b4ebda

Re: [Plplot-devel] wxWidgets Ubuntu bug

2015-07-29 Thread Alan W. Irwin
On 2015-07-29 14:36+0100 Phil Rosenberg wrote: > HI Alan > I have looked at the Ubuntu bug and have found the issue. I thought I > had removed all instances of creating a wxFont from the driver in the > console mode side, but I missed one. This causes a crash on wxWidgets > 3.0 on my Ubuntu machin

[Plplot-devel] wxWidgets Ubuntu bug

2015-07-29 Thread Phil Rosenberg
HI Alan I have looked at the Ubuntu bug and have found the issue. I thought I had removed all instances of creating a wxFont from the driver in the console mode side, but I missed one. This causes a crash on wxWidgets 3.0 on my Ubuntu machine for every example. I thought I had created a fix, but i

Re: [Plplot-devel] wxwidgets error when building plplot 5.11.0 on FreeBSD

2015-05-21 Thread Phil Rosenberg
Hi Alan and Ben Yes, with the new system in place a new wxPNG driver would be as simple as passing in a memoryDC then a function call to write it to file as any number of raster formats. It was on my list before the last release, but I never quite found the time. It is still on the list though for

Re: [Plplot-devel] wxwidgets error when building plplot 5.11.0 on FreeBSD

2015-04-19 Thread Ben Woods
Thanks for the feedback Alan. I have removed the -DPLD_wxpng:BOOL=ON option and it is all working well now. Thanks! Regards, Ben On Fri, 17 Apr 2015 at 9:23 am Alan W. Irwin wrote: > On 2015-04-16 22:48- Ben Woods wrote: > > > Hey everyone, > > > > I'm trying to build plplot 5.11.0 on FreeB

Re: [Plplot-devel] wxwidgets error when building plplot 5.11.0 on FreeBSD

2015-04-16 Thread Alan W. Irwin
On 2015-04-16 22:48- Ben Woods wrote: > Hey everyone, > > I'm trying to build plplot 5.11.0 on FreeBSD with wxwidgets support. I > have wx28-gtk2-2.8.12 and agg-2.5_11 installed, and am compiling with > the following options: > -DPLD_wxpng:BOOL=ON > -DwxWidgets_CONFIG_EXECUTABLE:FILEPATH="/usr

[Plplot-devel] wxwidgets error when building plplot 5.11.0 on FreeBSD

2015-04-16 Thread Ben Woods
Hey everyone, I'm trying to build plplot 5.11.0 on FreeBSD with wxwidgets support. I have wx28-gtk2-2.8.12 and agg-2.5_11 installed, and am compiling with the following options: -DPLD_wxpng:BOOL=ON -DwxWidgets_CONFIG_EXECUTABLE:FILEPATH="/usr/local/bin/wxgtk2-2.8-config" Compiler output is below

Re: [Plplot-devel] wxWidgets Driver

2015-02-13 Thread Jim Dishaw
There should be no problem if you increased that number. I have to ask if you need more than 100 simultaneous plots. You can use pladv() or the plbop()/pleop() functions to advance to a new page. If you really want a fresh state you can do a plend1() call and then start over. A better solution

[Plplot-devel] wxWidgets Driver

2015-02-13 Thread laurent Berger
Hi, I am using plplot for image processing with many plplot windows more than 100. In source plplot streams seems limited to 100 (#define PL_NSTREAMS 100 // Max number of concurrent streams. plplotP.h line 289). Is it possible to increase this values? Thanks for yours answers

Re: [Plplot-devel] wxWidgets-3.0.0 demo display incorrect

2013-12-10 Thread Joost Kuckartz
sourceforge.net Date: Wed, 11 Dec 2013 15:47:17 +1100 Subject: Re: [Plplot-devel] wxWidgets-3.0.0 demo display incorrect I would like to also ask: which wxPLplotwindow should normally be referred to when creating your own wxwidgets plplot apps? I noticed that updates to the wxWidgets driver

Re: [Plplot-devel] wxWidgets-3.0.0 demo display incorrect

2013-12-10 Thread Joost Kuckartz
be moved to become a binding? Or am I now completely misunderstanding the procedure... Regards, Joost From: jkuckartz1...@hotmail.com To: plplot-devel@lists.sourceforge.net Date: Wed, 11 Dec 2013 15:12:26 +1100 Subject: [Plplot-devel] wxWidgets-3.0.0 demo display incorrect Hello, 1.In the

[Plplot-devel] wxWidgets-3.0.0 demo display incorrect

2013-12-10 Thread Joost Kuckartz
Hello, 1.In the wxPLplotdemo example, the bottom half of the plot display is empty (see http://img197.imageshack.us/img197/5332/oqdv.jpg ). Having seen this in wxWidgets before I expect a sizer issue.When resizing the screen, it becomes worse (only the original visible size will stay visible, bu

Re: [Plplot-devel] wxWidgets not detected through cmake

2013-11-05 Thread phil rosenberg
One thing that may be worth checking that caught me out in the past, from memory CMAKE is case sensitive for its paths, even though Windows isn't. Make sure your WXWIN environment variable is case-correct. I am using wxWidgets with plplot on win7 with no problems. I installed wxWidgets 2.8 using

Re: [Plplot-devel] wxWidgets not detected through cmake

2013-10-31 Thread Alan W. Irwin
On 2013-10-31 15:57+1100 Joost Kuckartz wrote: > I had to recently update my computer OS, and have shifted from Windows XP to Windows 7. Additionally, I've shifted from Visual Studio 2010 to Visual Studio 2012. > After installing and building wxWidgets and shapelib, I tried the procedure for comp

[Plplot-devel] wxWidgets not detected through cmake

2013-10-30 Thread Joost Kuckartz
I had to recently update my computer OS, and have shifted from Windows XP to Windows 7. Additionally, I've shifted from Visual Studio 2010 to Visual Studio 2012. After installing and building wxWidgets and shapelib, I tried the procedure for compiling plplot (from svn trunk). The procedure I use

Re: [Plplot-devel] wxwidgets linebreaks

2012-10-05 Thread phil rosenberg
c: "plplot-devel@lists.sourceforge.net" Sent: Friday, 5 October 2012, 9:30 Subject: Re: [Plplot-devel] wxwidgets linebreaks On Thu, Oct 04, 2012 at 03:33:04PM -0700, phil rosenberg wrote: > Hi Andrew > Attached is my output for example 1 with backend=2. Everything looks fine to

Re: [Plplot-devel] wxwidgets linebreaks

2012-10-05 Thread Andrew Ross
On Thu, Oct 04, 2012 at 03:33:04PM -0700, phil rosenberg wrote: > Hi Andrew > Attached is my output for example 1 with backend=2. Everything looks fine to > me. > ? > I downloaded a fresh version of the source and applied the patch so it's a > clean install as it were. > ? > I'm using wxWidgets 2

Re: [Plplot-devel] wxWidgets initialisation bug

2012-07-19 Thread Andrew Ross
; > > > > > > > > > From: Andrew Ross > > To: phil rosenberg > > Cc: "plplot-devel@lists.sourceforge.net" > > > > Sent: Tuesday, 3 July 2012, 9:08 > > Subject: Re: [Plplot-devel] wxWi

Re: [Plplot-devel] wxWidgets initialisation bug

2012-07-03 Thread Andrew Ross
n 2.8.10 > > > > > From: Andrew Ross > To: phil rosenberg > Cc: "plplot-devel@lists.sourceforge.net" > Sent: Tuesday, 3 July 2012, 9:08 > Subject: Re: [Plplot-devel] wxWidgets initialisation bug > > > You could possibly be right. It might al

Re: [Plplot-devel] wxWidgets initialisation bug

2012-07-03 Thread phil rosenberg
I'm on version 2.8.10 From: Andrew Ross To: phil rosenberg Cc: "plplot-devel@lists.sourceforge.net" Sent: Tuesday, 3 July 2012, 9:08 Subject: Re: [Plplot-devel] wxWidgets initialisation bug You could possibly be right. It might also be

Re: [Plplot-devel] wxWidgets initialisation bug

2012-07-03 Thread Andrew Ross
m compiling on Windows with MSVC++ Express, based on > solution/project files generated by CMake. > ? > Phil > > > > From: Andrew Ross > To: phil rosenberg > Cc: "plplot-devel@lists.sourceforge.net" > Sent: Friday,

Re: [Plplot-devel] wxWidgets initialisation bug

2012-06-29 Thread phil rosenberg
++ Express, based on solution/project files generated by CMake.   Phil From: Andrew Ross To: phil rosenberg Cc: "plplot-devel@lists.sourceforge.net" Sent: Friday, 29 June 2012, 11:57 Subject: Re: [Plplot-devel] wxWidgets initialisation bug Hi Phil

Re: [Plplot-devel] wxWidgets initialisation bug

2012-06-29 Thread Andrew Ross
Hi Phil, I'm certaintly no expert on the wxwidgets driver, but your suggestion does seem sensible. I've checked and it doesn't break either "make test_wxPLplotDemo" or "make test_c_wxwidgets" which I take as a good sign. I notice that wxPLplotDemo does derive a class from wxApp not wxPLplotApp, b

[Plplot-devel] wxWidgets initialisation bug

2012-06-28 Thread phil rosenberg
Hi I'm emailing with a patch which I believe fixes a bug in the wxWidgets driver.   The problem occurrs when trying to include plplot in a wxWidgets application that is separate to PLplot - i.e. when the user wants to use their own derivation of wxApp rather than wxPLplotApp. The bug manifests it

Re: [Plplot-devel] wxWidgets font style patch

2012-05-07 Thread Alan W. Irwin
On 2012-05-07 16:40-0700 phil rosenberg wrote: > Hi > I just found a small bug whereby the styles (italic, bold etc) weren't being > applied correctly by wxWidgets in the _gc and _dc files. An > & was used instead of a | when combining style flags. I've attached a patch. >   > This is the first p

[Plplot-devel] wxWidgets font style patch

2012-05-07 Thread phil rosenberg
Hi I just found a small bug whereby the styles (italic, bold etc) weren't being applied correctly by wxWidgets in the _gc and _dc files. An & was used instead of a | when combining style flags. I've attached a patch.   This is the first patch I've created using Tortoise SVN so I hope it works oka

Re: [Plplot-devel] wxWidgets driver and line breaks

2012-04-26 Thread Alan W. Irwin
On 2012-04-26 22:27+0100 Andrew Ross wrote: > > Phil, > > Do you have a small test program to illustrate this? It would be useful to > check other drivers with. I suspect you are right in that this is on a > driver-by-driver basis. > > Actually, it's pretty trivial to make a quick check. I just tr

Re: [Plplot-devel] wxWidgets driver and line breaks

2012-04-26 Thread Andrew Ross
Phil, Do you have a small test program to illustrate this? It would be useful to check other drivers with. I suspect you are right in that this is on a driver-by-driver basis. Actually, it's pretty trivial to make a quick check. I just tried putting a \n into the label of the x00 plot. A ver

[Plplot-devel] wxWidgets driver and line breaks

2012-04-25 Thread phil rosenberg
Hi I've just hit a small problem using the wxWidgets driver dealing with line breaks when outputting text.   Basically when I use wxGraphicsContext for on screen display line breaks are dealt with as I might expect. However when I use a wxDC (e.g. wxMetafileDC) the line breaks are ignored. I pos

Re: [Plplot-devel] wxWidgets

2010-11-24 Thread Arjen Markus
Hi Alan, On 2010-11-25 03:14, Alan W. Irwin wrote: > On 2010-11-24 11:28+0100 Arjen Markus wrote: > >> Hello, >> >> I tried with version 2.8.11 and that works fine. No compilation >> problems with MSVC/C++ 9.0. (The Wiki page requires an update of course). > > Oops. I should have remembered to l

Re: [Plplot-devel] wxWidgets

2010-11-24 Thread Alan W. Irwin
On 2010-11-24 11:28+0100 Arjen Markus wrote: > Hello, > > I tried with version 2.8.11 and that works fine. No compilation > problems with MSVC/C++ 9.0. (The Wiki page requires an update of course). Oops. I should have remembered to look at all my e-mail before replying to your first one. Glad it

Re: [Plplot-devel] wxWidgets

2010-11-24 Thread Alan W. Irwin
On 2010-11-24 09:51+0100 Arjen Markus wrote: > Hello, > > I am trying to get wxWidgets to work on Windows and see if we can expand > the documented capabilities of PLplot on that platform. I downloaded > wxWidgets 2.6.3 as described in the Wiki, but I ran into compilation > problems: > - MSVC /C++

Re: [Plplot-devel] wxWidgets

2010-11-24 Thread Arjen Markus
Hello, I tried with version 2.8.11 and that works fine. No compilation problems with MSVC/C++ 9.0. (The Wiki page requires an update of course). Regards, Arjen On 2010-11-24 09:51, Arjen Markus wrote: > Hello, > > I am trying to get wxWidgets to work on Windows and see if we can expand > the d

[Plplot-devel] wxWidgets

2010-11-24 Thread Arjen Markus
Hello, I am trying to get wxWidgets to work on Windows and see if we can expand the documented capabilities of PLplot on that platform. I downloaded wxWidgets 2.6.3 as described in the Wiki, but I ran into compilation problems: - MSVC /C++ 9.0 does not like the code in src\msw\dlsmw.cpp (line 316)

Re: [Plplot-devel] wxWidgets cmake 2.8.0 support

2009-10-30 Thread Orion Poplawski
On 10/30/2009 04:36 AM, Werner Smekal wrote: > Actually the -D drop was done after Miguel (maintainer of the wxWidgets > module) committed the changes I asked him to do for better MinGW and > Visual C++ support. Anyway this is correct, since I found that the > module was behaving differently (somet

[Plplot-devel] wxWidgets driver update completed

2008-11-20 Thread Werner Smekal
Hi, I more or less completed the (huge) update to the wxWidgets driver. Basically there is now a basic abstract wxWidgets driver class, which can't do nothing on its own, but backends can be inherited from this base class (various drivers in one driver if you want). This allowed to me to a

Re: [Plplot-devel] wxWidgets driver

2008-05-09 Thread Alan W. Irwin
On 2008-05-09 11:00+0200 Werner Smekal wrote: > Anyway, the wxWidgets driver will not compile most of the time, since > I want to commit more often to not loose any work, just in case. These > are too much changes to do them locally without comitting. Therefore, > the wxWidgets driver is now OFF b

Re: [Plplot-devel] wxWidgets driver

2008-05-09 Thread Hezekiah M. Carty
On Fri, May 9, 2008 at 5:00 AM, Werner Smekal <[EMAIL PROTECTED]> wrote: > Anyway, the wxWidgets driver will not compile most of the time, since > I want to commit more often to not loose any work, just in case. These > are too much changes to do them locally without comitting. Therefore, > the wxW

[Plplot-devel] wxWidgets driver

2008-05-09 Thread Werner Smekal
Hi, I'm going to work on the wxWidgets driver the next days and weeks, most importantly I implement a new backend based on the wxGraphicsContext class, which itself is based on gdi+ (Windows), cairo (linux) and quartz (mac os x) and should provide antialized and fast plots on all the platf

[Plplot-devel] wxwidgets

2008-01-03 Thread Ferrell, Stephen
I'm having a problem with plots on the wxWidgets device. I'm using Visual Studio 6, Plplot 5.8.0, CMAKE 2.4 patch 7, wxWidgets 2.6.3 and Freetype 2.3.5. The examples compile just fine and I get output on all devices except for the wxwidget device. On that device I get a blank screen with a cr

Re: [Plplot-devel] wxWidgets bindings and other changes

2007-02-04 Thread Alan W. Irwin
On 2007-02-05 00:42+0100 Werner Smekal wrote: > I also have a small demo application - Alan, where should this file go > (together with a cmake file), or should I keep this separate (e.g. in > the wiki)? If it is analogous to the gnome canvas case, then I believe it should go in the appropriate e

[Plplot-devel] wxWidgets bindings and other changes

2007-02-04 Thread Werner Smekal
Hi, I added an Interface to plplot from wxWidgets applications to the bindings directory, similar to the Gnome2 bindings. They work on Windows quite well, but didn't test them on Linux so far. I also have a small demo application - Alan, where should this file go (together with a cmake file),