2002-02-28 14:26:23 +00:00
|
|
|
#include "wxinc.h"
|
|
|
|
#include "wx/print.h"
|
|
|
|
#include "wx/printdlg.h"
|
|
|
|
|
|
|
|
#include "xvt.h"
|
2003-05-22 15:25:25 +00:00
|
|
|
#ifdef WIN32
|
2004-04-28 09:49:37 +00:00
|
|
|
#include "wx/dcps.h"
|
2002-02-28 14:26:23 +00:00
|
|
|
#include "oswin32.h"
|
2003-05-22 15:25:25 +00:00
|
|
|
#else
|
|
|
|
#include "oslinux.h"
|
2004-03-12 14:21:37 +00:00
|
|
|
#include "incstr.h"
|
2003-05-22 15:25:25 +00:00
|
|
|
#endif
|
2002-02-28 14:26:23 +00:00
|
|
|
|
|
|
|
#include "xvintern.h"
|
|
|
|
|
2002-07-03 14:53:33 +00:00
|
|
|
#pragma pack(4)
|
|
|
|
|
2002-02-28 14:26:23 +00:00
|
|
|
struct TPRINT_RCD : public PRINT_RCD
|
|
|
|
{
|
2002-07-03 14:53:33 +00:00
|
|
|
unsigned char m_data[16*1024];
|
|
|
|
unsigned int m_size; // Dimensione della struct DEVMODE
|
2002-02-28 14:26:23 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
void SetData(void * data, unsigned int nSize);
|
|
|
|
#else
|
|
|
|
unsigned int GetSize() {return m_size;}
|
|
|
|
void SetBoolElement(bool v, unsigned int * nSize);
|
|
|
|
void SetUnsignedElement(unsigned char v, unsigned int * nSize);
|
|
|
|
void SetIntElement(int v, unsigned int * nSize);
|
|
|
|
void SetLongElement(long v, unsigned int * nSize);
|
|
|
|
void SetDoubleElement(double v, unsigned int * nSize);
|
|
|
|
void SetStringElement(const char * p, unsigned int * nSize);
|
|
|
|
void SetData(wxPrintData & data);
|
|
|
|
|
|
|
|
bool GetBoolElement(unsigned int * nPos) const ;
|
|
|
|
unsigned char GetUnsignedElement(unsigned int * nPos) const ;
|
|
|
|
int GetIntElement(unsigned int * nPos) const ;
|
|
|
|
long GetLongElement(unsigned int * nPos) const ;
|
|
|
|
double GetDoubleElement(unsigned int * nPos) const ;
|
|
|
|
const char * GetStringElement(unsigned int * nPos) const ;
|
|
|
|
void GetData(wxPrintData & data) const ;
|
|
|
|
#endif
|
2002-07-03 14:53:33 +00:00
|
|
|
TPRINT_RCD();
|
|
|
|
~TPRINT_RCD();
|
2002-02-28 14:26:23 +00:00
|
|
|
};
|
|
|
|
|
2002-07-03 14:53:33 +00:00
|
|
|
#pragma pack()
|
|
|
|
|
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
|
2002-07-03 14:53:33 +00:00
|
|
|
void TPRINT_RCD::SetData(void* data, unsigned int nSize)
|
|
|
|
{
|
|
|
|
if (nSize <= sizeof(m_data))
|
|
|
|
{
|
|
|
|
memcpy(m_data, data, nSize);
|
|
|
|
m_size = nSize;
|
|
|
|
}
|
2004-01-22 15:10:39 +00:00
|
|
|
else
|
|
|
|
xvt_dm_post_error("Printer info exceeds 16K");
|
2002-07-03 14:53:33 +00:00
|
|
|
}
|
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
void TPRINT_RCD::SetBoolElement(bool v, unsigned int * nSize)
|
|
|
|
{
|
|
|
|
if (*nSize < sizeof(m_data))
|
|
|
|
m_data[(*nSize)++] = (unsigned char) v;
|
|
|
|
else
|
|
|
|
xvt_dm_post_error("Printer info exceeds 16K");
|
|
|
|
}
|
|
|
|
|
|
|
|
void TPRINT_RCD::SetUnsignedElement(unsigned char v, unsigned int * nSize)
|
|
|
|
{
|
|
|
|
if (*nSize < sizeof(m_data))
|
|
|
|
m_data[(*nSize)++] = v;
|
|
|
|
else
|
|
|
|
xvt_dm_post_error("Printer info exceeds 16K");
|
|
|
|
}
|
|
|
|
|
|
|
|
void TPRINT_RCD::SetIntElement(int v, unsigned int * nSize)
|
|
|
|
{
|
|
|
|
if (*nSize + sizeof(int) <= sizeof(m_data))
|
|
|
|
{
|
|
|
|
memcpy(&m_data[*nSize], (void *) &v, sizeof(int));
|
|
|
|
*nSize += sizeof(int);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xvt_dm_post_error("Printer info exceeds 16K");
|
|
|
|
}
|
|
|
|
|
|
|
|
void TPRINT_RCD::SetLongElement(long v, unsigned int * nSize)
|
|
|
|
{
|
|
|
|
if (*nSize + sizeof(long) <= sizeof(m_data))
|
|
|
|
{
|
|
|
|
memcpy(&m_data[*nSize], (void *) &v, sizeof(long));
|
|
|
|
*nSize += sizeof(long);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xvt_dm_post_error("Printer info exceeds 16K");
|
|
|
|
}
|
|
|
|
|
|
|
|
void TPRINT_RCD::SetDoubleElement(double v, unsigned int * nSize)
|
|
|
|
{
|
|
|
|
if (*nSize + sizeof(double) <= sizeof(m_data))
|
|
|
|
{
|
|
|
|
memcpy(&m_data[*nSize], (void *) &v, sizeof(double));
|
|
|
|
*nSize += sizeof(double);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xvt_dm_post_error("Printer info exceeds 16K");
|
|
|
|
}
|
|
|
|
|
|
|
|
void TPRINT_RCD::SetStringElement(const char * p, unsigned int *nSize)
|
|
|
|
{
|
|
|
|
if (*nSize + strlen(p) + 1<= sizeof(m_data))
|
|
|
|
{
|
|
|
|
strcpy((char *) &m_data[*nSize], p);
|
|
|
|
*nSize += strlen(p);
|
|
|
|
m_data[(*nSize)++] = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xvt_dm_post_error("Printer info exceeds 16K");
|
|
|
|
}
|
|
|
|
|
|
|
|
void TPRINT_RCD::SetData(wxPrintData & data)
|
|
|
|
{
|
|
|
|
m_size = 0;
|
|
|
|
|
|
|
|
|
|
|
|
SetBoolElement(data.GetCollate(), &m_size);
|
|
|
|
SetBoolElement(data.GetColour(), &m_size);
|
|
|
|
SetUnsignedElement(data.GetDuplex(), &m_size);
|
|
|
|
SetIntElement(data.GetNoCopies(), &m_size);
|
|
|
|
SetIntElement(data.GetOrientation(), &m_size);
|
|
|
|
SetUnsignedElement(data.GetPaperId(), &m_size);
|
|
|
|
SetStringElement((const char *) data.GetPrinterName(), &m_size);
|
|
|
|
SetUnsignedElement(data.GetQuality(), &m_size);
|
|
|
|
|
|
|
|
// PostScript Members
|
|
|
|
SetStringElement((const char *) data.GetPrinterCommand(), &m_size);
|
|
|
|
|
|
|
|
wxString Options = data.GetPrinterOptions();
|
|
|
|
|
|
|
|
if (Options.IsEmpty())
|
|
|
|
Options = "-P" + data.GetPrinterName();
|
|
|
|
SetStringElement((const char *) Options, &m_size);
|
|
|
|
SetStringElement((const char *) data.GetPreviewCommand(), &m_size);
|
|
|
|
SetStringElement((const char *) data.GetFilename(), &m_size);
|
|
|
|
SetStringElement((const char *) data.GetFontMetricPath(), &m_size);
|
|
|
|
SetDoubleElement(data.GetPrinterScaleX(), &m_size);
|
|
|
|
SetDoubleElement(data.GetPrinterScaleY(), &m_size);
|
|
|
|
SetLongElement(data.GetPrinterTranslateX(), &m_size);
|
|
|
|
SetLongElement(data.GetPrinterTranslateY(), &m_size);
|
|
|
|
SetUnsignedElement(wxPRINT_MODE_PRINTER, &m_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TPRINT_RCD::GetBoolElement(unsigned int * nPos) const
|
|
|
|
{
|
|
|
|
bool * p = (bool *) &m_data[*nPos];
|
|
|
|
*nPos += sizeof(bool);
|
|
|
|
return *p;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char TPRINT_RCD::GetUnsignedElement(unsigned int * nPos) const
|
|
|
|
{
|
|
|
|
unsigned char * p = (unsigned char *) &m_data[*nPos];
|
|
|
|
*nPos += sizeof(unsigned char);
|
|
|
|
return *p;
|
|
|
|
}
|
|
|
|
|
|
|
|
int TPRINT_RCD::GetIntElement(unsigned int * nPos) const
|
|
|
|
{
|
|
|
|
int * p = (int *) &m_data[*nPos];
|
|
|
|
*nPos += sizeof(int);
|
|
|
|
return *p;
|
|
|
|
}
|
|
|
|
|
|
|
|
long TPRINT_RCD::GetLongElement(unsigned int * nPos) const
|
|
|
|
{
|
|
|
|
long * p = (long *) &m_data[*nPos];
|
|
|
|
*nPos += sizeof(long);
|
|
|
|
return *p;
|
|
|
|
}
|
|
|
|
|
|
|
|
double TPRINT_RCD::GetDoubleElement(unsigned int * nPos) const
|
|
|
|
{
|
|
|
|
double * p = (double *) &m_data[*nPos];
|
|
|
|
*nPos += sizeof(double);
|
|
|
|
return *p;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * TPRINT_RCD::GetStringElement(unsigned int * nPos) const
|
|
|
|
{
|
|
|
|
const char * p = (const char *) &m_data[*nPos];
|
|
|
|
*nPos += (strlen(p) +1);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TPRINT_RCD::GetData(wxPrintData & data) const
|
|
|
|
{
|
|
|
|
unsigned int nPos = 0;
|
|
|
|
wxString Str;
|
|
|
|
|
|
|
|
data.SetCollate(GetBoolElement(&nPos));
|
|
|
|
data.SetColour(GetBoolElement(&nPos));
|
|
|
|
data.SetDuplex((wxDuplexMode) GetUnsignedElement(&nPos));
|
|
|
|
data.SetNoCopies(GetIntElement(&nPos));
|
|
|
|
data.SetOrientation(GetIntElement(&nPos));
|
|
|
|
data.SetPaperId((wxPaperSize) GetUnsignedElement(&nPos));
|
|
|
|
Str = GetStringElement(&nPos);
|
|
|
|
data.SetPrinterName(Str);
|
|
|
|
data.SetQuality(GetUnsignedElement(&nPos));
|
|
|
|
|
|
|
|
// PostScript Members
|
|
|
|
Str = GetStringElement(&nPos);
|
|
|
|
data.SetPrinterCommand(Str);
|
|
|
|
Str = GetStringElement(&nPos);
|
|
|
|
data.SetPrinterOptions(Str);
|
|
|
|
Str = GetStringElement(&nPos);
|
|
|
|
data.SetPreviewCommand(Str);
|
|
|
|
Str = GetStringElement(&nPos);
|
|
|
|
data.SetFilename(Str);
|
|
|
|
Str = GetStringElement(&nPos);
|
|
|
|
data.SetFontMetricPath(Str);
|
|
|
|
data.SetPrinterScaleX(GetDoubleElement(&nPos));
|
|
|
|
data.SetPrinterScaleY(GetDoubleElement(&nPos));
|
|
|
|
data.SetPrinterTranslateX(GetLongElement(&nPos));
|
|
|
|
data.SetPrinterTranslateY(GetLongElement(&nPos));
|
|
|
|
data.SetPrintMode((wxPrintMode) GetUnsignedElement(&nPos));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
TPRINT_RCD::TPRINT_RCD() : m_size(0)
|
|
|
|
{
|
|
|
|
pr = NULL;
|
2002-07-03 14:53:33 +00:00
|
|
|
memset(m_data, 0, sizeof(m_data));
|
|
|
|
}
|
|
|
|
|
|
|
|
TPRINT_RCD::~TPRINT_RCD()
|
|
|
|
{
|
|
|
|
memset(m_data, 0, sizeof(m_data));
|
|
|
|
m_size = 0;
|
|
|
|
}
|
|
|
|
|
2002-02-28 14:26:23 +00:00
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// TwxPrintOut
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class TwxPrintOut : public wxPrintout
|
|
|
|
{
|
|
|
|
protected:
|
2003-10-27 15:54:53 +00:00
|
|
|
TPRINT_RCD* m_prcd;
|
|
|
|
bool m_bBadDriver;
|
|
|
|
|
2002-02-28 14:26:23 +00:00
|
|
|
virtual bool HasPage(int pageNum);
|
|
|
|
virtual bool OnPrintPage(int pageNum);
|
2003-10-14 13:40:52 +00:00
|
|
|
void ResetDC();
|
2002-02-28 14:26:23 +00:00
|
|
|
|
|
|
|
public:
|
2003-10-27 15:54:53 +00:00
|
|
|
void SetBadDriver(bool bd) { m_bBadDriver = bd; }
|
|
|
|
bool HasBadDriver() const { return m_bBadDriver; }
|
|
|
|
|
2002-02-28 14:26:23 +00:00
|
|
|
void InitDC(TPRINT_RCD* prcd);
|
|
|
|
TwxPrintOut(TPRINT_RCD* prcd = NULL);
|
|
|
|
virtual ~TwxPrintOut();
|
|
|
|
};
|
|
|
|
|
|
|
|
static TwxPrintOut* m_po = NULL;
|
|
|
|
|
|
|
|
bool TwxPrintOut::HasPage(int pageNum)
|
2003-10-14 13:40:52 +00:00
|
|
|
{ return true; }
|
2002-02-28 14:26:23 +00:00
|
|
|
|
|
|
|
bool TwxPrintOut::OnPrintPage(int pageNum)
|
2003-10-14 13:40:52 +00:00
|
|
|
{ return false; }
|
2002-02-28 14:26:23 +00:00
|
|
|
|
2003-10-14 13:40:52 +00:00
|
|
|
void TwxPrintOut::ResetDC()
|
2002-02-28 14:26:23 +00:00
|
|
|
{
|
2003-05-22 15:25:25 +00:00
|
|
|
wxDC* dc = GetDC();
|
2002-02-28 14:26:23 +00:00
|
|
|
if (dc != NULL)
|
|
|
|
delete dc;
|
2003-10-14 13:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TwxPrintOut::InitDC(TPRINT_RCD* prcd)
|
|
|
|
{
|
|
|
|
ResetDC();
|
|
|
|
wxDC* dc = NULL;
|
2002-02-28 14:26:23 +00:00
|
|
|
|
|
|
|
m_prcd = prcd;
|
|
|
|
|
|
|
|
if (m_prcd == NULL)
|
|
|
|
{
|
|
|
|
wxPrinter printer;
|
2003-05-22 15:25:25 +00:00
|
|
|
#ifdef WIN32
|
2004-04-28 09:49:37 +00:00
|
|
|
dc = new wxPrinterDC(printer.GetPrintDialogData().GetPrintData());
|
2003-05-22 15:25:25 +00:00
|
|
|
#else
|
|
|
|
dc = new wxPostScriptDC(printer.GetPrintDialogData().GetPrintData());
|
2004-04-27 19:09:18 +00:00
|
|
|
#endif
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxPrintData data;
|
|
|
|
#ifdef WIN32
|
2004-04-27 19:09:18 +00:00
|
|
|
|
2002-07-03 14:53:33 +00:00
|
|
|
data.SetNativeData(OsWin32_ConvertToNativePrinterInfo(prcd->m_data, prcd->m_size));
|
2002-02-28 14:26:23 +00:00
|
|
|
data.ConvertFromNative();
|
2004-04-28 09:49:37 +00:00
|
|
|
dc = new wxPrinterDC(data);
|
2003-05-22 15:25:25 +00:00
|
|
|
#else
|
2004-04-27 19:09:18 +00:00
|
|
|
prcd->GetData(data);
|
|
|
|
dc = new wxPostScriptDC(data);
|
2003-05-22 15:25:25 +00:00
|
|
|
#endif
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxSize s = dc->GetPPI();
|
|
|
|
SetPPIPrinter(s.x, s.y);
|
|
|
|
|
|
|
|
s = dc->GetSize();
|
|
|
|
SetPageSizePixels(s.x, s.y);
|
|
|
|
|
|
|
|
SetDC(dc);
|
|
|
|
}
|
|
|
|
|
|
|
|
TwxPrintOut::TwxPrintOut(TPRINT_RCD* prcd)
|
2003-10-27 15:54:53 +00:00
|
|
|
: wxPrintout(_GetAppTitle()), m_bBadDriver(false)
|
2003-05-22 15:25:25 +00:00
|
|
|
{
|
2002-02-28 14:26:23 +00:00
|
|
|
InitDC(prcd);
|
|
|
|
}
|
|
|
|
|
|
|
|
TwxPrintOut::~TwxPrintOut()
|
|
|
|
{
|
2003-10-14 13:40:52 +00:00
|
|
|
ResetDC();
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// TwxPrintOutCache
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class TwxPrintOutCache
|
|
|
|
{
|
|
|
|
unsigned long m_signature;
|
|
|
|
TwxPrintOut* m_po;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
unsigned long Signature(TPRINT_RCD* prcd) const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
TwxPrintOut* Get(TPRINT_RCD* prcd);
|
|
|
|
void Reset();
|
|
|
|
|
|
|
|
TwxPrintOutCache() : m_signature(0), m_po(NULL) { }
|
|
|
|
~TwxPrintOutCache() { Reset(); }
|
|
|
|
} m_PrintoutCache;
|
|
|
|
|
|
|
|
unsigned long TwxPrintOutCache::Signature(TPRINT_RCD* prcd) const
|
|
|
|
{
|
2003-10-22 10:56:09 +00:00
|
|
|
const unsigned char* data = (const unsigned char*)prcd;
|
|
|
|
unsigned long h = 0;
|
|
|
|
for (size_t c = 0; c < prcd->m_size; c++)
|
|
|
|
{
|
|
|
|
h = (h << 2) + data[c];
|
|
|
|
const unsigned long i = h & 0xC0000000;
|
|
|
|
if (i) h = (h ^ (i >> 12)) & 0x3FFFFFFF;
|
|
|
|
}
|
|
|
|
return h;
|
|
|
|
|
2003-10-14 13:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TwxPrintOutCache::Reset()
|
|
|
|
{
|
|
|
|
if (m_po != NULL)
|
|
|
|
{
|
|
|
|
delete m_po;
|
|
|
|
m_po = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TwxPrintOut* TwxPrintOutCache::Get(TPRINT_RCD* prcd)
|
|
|
|
{
|
|
|
|
unsigned long signature = Signature(prcd);
|
|
|
|
if (m_po != NULL && m_signature == signature)
|
|
|
|
return m_po;
|
|
|
|
Reset();
|
|
|
|
m_po = new TwxPrintOut(prcd);
|
|
|
|
m_signature = signature;
|
|
|
|
|
|
|
|
return m_po;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// TPrintDC
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
wxDC& TPrintDC::GetDC(bool)
|
|
|
|
{
|
|
|
|
_dc = m_po->GetDC(); // Forza display context corrente
|
2003-02-05 14:26:24 +00:00
|
|
|
if (_dirty)
|
|
|
|
_dirty = -1;
|
2002-02-28 14:26:23 +00:00
|
|
|
return TDC::GetDC(false);
|
|
|
|
}
|
|
|
|
|
2004-03-17 17:15:44 +00:00
|
|
|
void TPrintDC::KillDC()
|
|
|
|
{
|
|
|
|
_dc = NULL; // _dc is owned by wxPrintout
|
|
|
|
}
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
TPrintDC::TPrintDC(wxWindow* owner) : TDC(owner)
|
2002-02-28 14:26:23 +00:00
|
|
|
{ }
|
|
|
|
|
|
|
|
TPrintDC::~TPrintDC()
|
|
|
|
{
|
|
|
|
_dc = NULL; // Evita distruzione!
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// Printing management :-(((((
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
BOOLEAN xvt_app_escape(int esc_code, PRINT_RCD* rcd, long* ph, long* pw, long* pvr, long* phr)
|
|
|
|
{
|
2003-02-05 14:26:24 +00:00
|
|
|
*ph = *pw = *pvr = *phr = 0;
|
2002-02-28 14:26:23 +00:00
|
|
|
switch (esc_code)
|
|
|
|
{
|
|
|
|
case XVT_ESC_GET_PRINTER_INFO:
|
2003-02-05 14:26:24 +00:00
|
|
|
if (rcd == NULL || xvt_print_is_valid(rcd))
|
2002-02-28 14:26:23 +00:00
|
|
|
{
|
2003-10-14 13:40:52 +00:00
|
|
|
int w, h;
|
|
|
|
if (m_po == NULL)
|
|
|
|
{
|
|
|
|
TwxPrintOut* po = m_PrintoutCache.Get((TPRINT_RCD*)rcd);
|
|
|
|
po->GetPPIPrinter(&w, &h);
|
|
|
|
*phr = w; *pvr = h;
|
|
|
|
po->GetPageSizePixels(&w, &h);
|
|
|
|
*pw = w; *ph = h;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_po->GetPPIPrinter(&w, &h);
|
|
|
|
*phr = w; *pvr = h;
|
|
|
|
m_po->GetPageSizePixels(&w, &h);
|
|
|
|
*pw = w; *ph = h;
|
|
|
|
}
|
|
|
|
|
2003-02-05 14:26:24 +00:00
|
|
|
return TRUE;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
2003-02-05 14:26:24 +00:00
|
|
|
break;
|
2003-05-22 15:25:25 +00:00
|
|
|
default:
|
2002-02-28 14:26:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
BOOLEAN xvt_dm_post_page_setup(PRINT_RCD* precp)
|
|
|
|
{
|
2002-02-28 14:26:23 +00:00
|
|
|
wxPageSetupDialog dlg((wxWindow*)TASK_WIN);
|
|
|
|
TPRINT_RCD* rcd = (TPRINT_RCD*)precp;
|
|
|
|
|
2004-02-13 14:52:01 +00:00
|
|
|
wxPageSetupData& pdd = dlg.GetPageSetupData();
|
|
|
|
wxPrintData& data = pdd.GetPrintData();
|
2003-05-22 15:25:25 +00:00
|
|
|
#ifdef WIN32
|
2004-02-13 14:52:01 +00:00
|
|
|
void* pHandle = OsWin32_ConvertToNativePrinterInfo(rcd->m_data, rcd->m_size);
|
|
|
|
data.SetNativeData(pHandle);
|
|
|
|
data.ConvertFromNative();
|
2003-05-22 15:25:25 +00:00
|
|
|
#endif
|
2004-02-13 14:52:01 +00:00
|
|
|
pdd.EnableMargins(false);
|
2002-02-28 14:26:23 +00:00
|
|
|
|
2004-02-13 14:52:01 +00:00
|
|
|
const BOOLEAN ok = dlg.ShowModal() == wxID_OK;
|
|
|
|
if (ok)
|
2002-02-28 14:26:23 +00:00
|
|
|
{
|
2003-05-22 15:25:25 +00:00
|
|
|
#ifdef WIN32
|
2004-02-13 14:52:01 +00:00
|
|
|
pHandle = data.GetNativeData();
|
2002-07-03 14:53:33 +00:00
|
|
|
unsigned int nSize = 0;
|
|
|
|
void* ptr = OsWin32_ConvertFromNativePrinterInfo(pHandle, nSize);
|
|
|
|
rcd->SetData(ptr, nSize);
|
2002-02-28 14:26:23 +00:00
|
|
|
delete ptr;
|
|
|
|
#else
|
2004-04-27 19:09:18 +00:00
|
|
|
rcd->SetData(data);
|
2002-02-28 14:26:23 +00:00
|
|
|
#endif
|
2003-10-14 13:40:52 +00:00
|
|
|
m_PrintoutCache.Reset();
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
2004-02-13 14:52:01 +00:00
|
|
|
|
|
|
|
return ok;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
long xvt_fmap_get_family_sizes(PRINT_RCD *precp, char *family, long *size_array, BOOLEAN *scalable, long max_sizes)
|
|
|
|
{
|
2003-10-27 15:54:53 +00:00
|
|
|
long size = 0;
|
2002-02-28 14:26:23 +00:00
|
|
|
*scalable = FALSE;
|
|
|
|
|
2004-05-20 14:18:12 +00:00
|
|
|
#ifdef WIN32
|
2002-02-28 14:26:23 +00:00
|
|
|
if (precp != NULL)
|
|
|
|
{
|
2003-10-14 13:40:52 +00:00
|
|
|
TwxPrintOut* po = m_PrintoutCache.Get((TPRINT_RCD*)precp);
|
2003-12-19 08:17:48 +00:00
|
|
|
if (!po->HasBadDriver())
|
2003-10-27 15:54:53 +00:00
|
|
|
size = OsWin32_EnumerateSizes(po->GetDC()->GetHDC(), family, size_array, scalable, max_sizes);
|
2004-05-20 14:18:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size = OsWin32_EnumerateSizes(NULL, family, size_array, scalable, max_sizes);
|
|
|
|
}
|
2003-05-22 15:25:25 +00:00
|
|
|
#else
|
2004-05-20 14:18:12 +00:00
|
|
|
size = OsLinux_EnumerateSizes(family, size_array, scalable, max_sizes);
|
2003-05-22 15:25:25 +00:00
|
|
|
#endif
|
2002-02-28 14:26:23 +00:00
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
return size;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
long xvt_fmap_get_families(PRINT_RCD *precp, char **family_array, long max_families)
|
|
|
|
{
|
2003-10-22 10:56:09 +00:00
|
|
|
long size = 0;
|
|
|
|
family_array[0] = NULL;
|
2002-02-28 14:26:23 +00:00
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
#ifdef WIN32
|
2004-05-20 11:07:27 +00:00
|
|
|
if (precp != NULL)
|
|
|
|
{
|
2003-10-14 13:40:52 +00:00
|
|
|
TwxPrintOut* po = m_PrintoutCache.Get((TPRINT_RCD*)precp);
|
2004-05-20 11:07:27 +00:00
|
|
|
size = OsWin32_EnumerateFamilies(po->GetDC()->GetHDC(), family_array, max_families);
|
2003-10-23 15:17:33 +00:00
|
|
|
if (size == 0)
|
2003-10-27 15:54:53 +00:00
|
|
|
po->SetBadDriver(true);
|
2004-05-20 11:07:27 +00:00
|
|
|
}
|
|
|
|
else
|
2004-05-20 14:18:12 +00:00
|
|
|
{
|
|
|
|
wxWindow* tw = (wxWindow*)TASK_WIN;
|
|
|
|
wxClientDC dc(tw);
|
|
|
|
size = OsWin32_EnumerateFamilies(dc.GetHDC(), family_array, max_families);
|
|
|
|
}
|
2003-05-22 15:25:25 +00:00
|
|
|
#else
|
2004-05-20 11:07:27 +00:00
|
|
|
size = OsLinux_EnumerateFamilies(family_array, max_families);
|
2003-05-22 15:25:25 +00:00
|
|
|
#endif
|
2004-05-20 11:07:27 +00:00
|
|
|
|
|
|
|
return size;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
void xvt_print_close(void)
|
|
|
|
{
|
2002-07-03 14:53:33 +00:00
|
|
|
// Nothing to do ?
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2004-04-28 09:49:37 +00:00
|
|
|
BOOLEAN xvt_print_close_page(PRINT_RCD* precp)
|
2003-05-22 15:25:25 +00:00
|
|
|
{
|
2002-02-28 14:26:23 +00:00
|
|
|
BOOLEAN ok = m_po != NULL;
|
|
|
|
if (ok)
|
2004-04-28 09:49:37 +00:00
|
|
|
{
|
|
|
|
wxDC* dc = m_po->GetDC();
|
|
|
|
dc->EndPage();
|
|
|
|
#ifdef WIN32
|
|
|
|
TPRINT_RCD* prcd = (TPRINT_RCD*)precp;
|
|
|
|
if (OsWin32_IsGenericTextOnly(prcd->m_data))
|
|
|
|
OsWin32_SpoolNewLine(dc->GetHDC());
|
|
|
|
#endif
|
|
|
|
}
|
2003-05-22 15:25:25 +00:00
|
|
|
return ok;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
PRINT_RCD* xvt_print_create(int *sizep)
|
|
|
|
{
|
2003-02-05 14:26:24 +00:00
|
|
|
TPRINT_RCD* pr = NULL;
|
|
|
|
*sizep = 0;
|
|
|
|
|
2002-02-28 14:26:23 +00:00
|
|
|
#ifdef WIN32
|
2002-07-03 14:53:33 +00:00
|
|
|
void* data = OsWin32_GetPrinterInfo(*sizep, NULL);
|
2003-02-05 14:26:24 +00:00
|
|
|
if (data != NULL)
|
|
|
|
{
|
2003-05-22 15:25:25 +00:00
|
|
|
pr = new TPRINT_RCD;
|
2003-02-05 14:26:24 +00:00
|
|
|
pr->SetData(data, *sizep);
|
|
|
|
*sizep += 4; // Spazio per puntatore iniziale
|
|
|
|
delete data;
|
|
|
|
}
|
2003-05-22 15:25:25 +00:00
|
|
|
#else
|
2004-04-27 19:09:18 +00:00
|
|
|
wxPrintData data;
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
data.SetPrinterName("");
|
2003-05-22 15:25:25 +00:00
|
|
|
pr = new TPRINT_RCD;
|
2004-04-27 19:09:18 +00:00
|
|
|
pr->SetData(data);
|
|
|
|
*sizep = pr->GetSize();
|
|
|
|
|
2002-07-03 14:53:33 +00:00
|
|
|
#endif
|
2003-02-05 14:26:24 +00:00
|
|
|
|
2002-07-03 14:53:33 +00:00
|
|
|
return pr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nuova funzione inventata da Aga
|
2003-05-22 15:25:25 +00:00
|
|
|
PRINT_RCD* xvt_print_create_by_name(int* sizep, const char* name)
|
|
|
|
{
|
2003-02-05 14:26:24 +00:00
|
|
|
TPRINT_RCD* pr = NULL;
|
|
|
|
*sizep = 0;
|
|
|
|
|
2002-07-03 14:53:33 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
void* data = OsWin32_GetPrinterInfo(*sizep, name);
|
2003-02-05 14:26:24 +00:00
|
|
|
if (data != NULL)
|
|
|
|
{
|
2003-05-22 15:25:25 +00:00
|
|
|
pr = new TPRINT_RCD;
|
2003-02-05 14:26:24 +00:00
|
|
|
pr->SetData(data, *sizep);
|
|
|
|
*sizep += 4; // Spazio per puntatore iniziale
|
|
|
|
delete data;
|
|
|
|
}
|
2003-05-22 15:25:25 +00:00
|
|
|
#else
|
2004-04-27 19:09:18 +00:00
|
|
|
wxPrintData data;
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
data.SetPrinterName(name);
|
2003-05-22 15:25:25 +00:00
|
|
|
pr = new TPRINT_RCD;
|
2004-04-27 19:09:18 +00:00
|
|
|
pr->SetData(data);
|
|
|
|
*sizep = pr->GetSize();
|
2002-02-28 14:26:23 +00:00
|
|
|
#endif
|
2003-02-05 14:26:24 +00:00
|
|
|
|
2002-02-28 14:26:23 +00:00
|
|
|
return pr;
|
|
|
|
}
|
|
|
|
|
2002-07-03 14:53:33 +00:00
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
WINDOW xvt_print_create_win(PRINT_RCD* precp, char* /* title */)
|
|
|
|
{
|
2002-02-28 14:26:23 +00:00
|
|
|
WINDOW win = NULL_WIN;
|
|
|
|
if (m_po != NULL)
|
|
|
|
{
|
|
|
|
m_po->InitDC((TPRINT_RCD*)precp);
|
|
|
|
m_po->OnBeginPrinting();
|
|
|
|
m_po->OnBeginDocument(1, 32000);
|
2003-05-22 15:25:25 +00:00
|
|
|
win = _print_win;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
return win;
|
|
|
|
}
|
|
|
|
|
2003-06-18 08:06:55 +00:00
|
|
|
void xvt_print_destroy(PRINT_RCD* precp)
|
2003-05-22 15:25:25 +00:00
|
|
|
{
|
2003-06-18 08:06:55 +00:00
|
|
|
delete precp;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
RCT* xvt_print_get_next_band(void)
|
|
|
|
{
|
2002-02-28 14:26:23 +00:00
|
|
|
static bool yes = false;
|
|
|
|
static RCT rct;
|
|
|
|
yes = !yes;
|
|
|
|
|
|
|
|
if (m_po == NULL || !yes)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
int w, h;
|
|
|
|
m_po->GetPageSizePixels(&w, &h);
|
|
|
|
rct.left = rct.top = 0;
|
|
|
|
rct.right = w;
|
|
|
|
rct.bottom = h;
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
return &rct;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
BOOLEAN xvt_print_is_valid(PRINT_RCD* precp)
|
|
|
|
{
|
2002-07-03 14:53:33 +00:00
|
|
|
BOOLEAN ok = precp != NULL && precp->pr == NULL;
|
2002-02-28 14:26:23 +00:00
|
|
|
if (ok)
|
|
|
|
{
|
2002-07-03 14:53:33 +00:00
|
|
|
TPRINT_RCD* rcd = (TPRINT_RCD*)precp;
|
2004-04-27 19:09:18 +00:00
|
|
|
|
|
|
|
#ifdef WIN32
|
2002-07-03 14:53:33 +00:00
|
|
|
ok = OsWin32_CheckPrinterInfo(rcd->m_data, rcd->m_size);
|
2003-05-22 15:25:25 +00:00
|
|
|
#else
|
2004-04-27 19:09:18 +00:00
|
|
|
wxPrintData data;
|
|
|
|
rcd->GetData(data);
|
2004-04-28 14:15:12 +00:00
|
|
|
ok = data.Ok();
|
2002-02-28 14:26:23 +00:00
|
|
|
#endif
|
|
|
|
}
|
2003-05-22 15:25:25 +00:00
|
|
|
return ok;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2003-12-19 08:17:48 +00:00
|
|
|
int xvt_print_get_name(PRINT_RCD* precp, char* name, int sz_s)
|
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
wxString n = ((const char*)precp) + 4;
|
2004-03-11 16:39:25 +00:00
|
|
|
if (n.Length() >= 30)
|
2003-12-19 08:17:48 +00:00
|
|
|
{
|
|
|
|
SLIST plist = xvt_print_list_devices();
|
|
|
|
for (SLIST_ELT pitem = xvt_slist_get_first(plist);
|
|
|
|
pitem != NULL; pitem = xvt_slist_get_next(plist, pitem))
|
|
|
|
{
|
|
|
|
const wxString pname = xvt_slist_get(plist, pitem, NULL);
|
|
|
|
if (pname.StartsWith(n))
|
|
|
|
{
|
|
|
|
n = pname;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xvt_slist_destroy(plist);
|
|
|
|
}
|
2004-04-27 19:09:18 +00:00
|
|
|
#else
|
|
|
|
TPRINT_RCD* rcd = (TPRINT_RCD*)precp;
|
|
|
|
wxPrintData data;
|
|
|
|
|
|
|
|
rcd->GetData(data);
|
|
|
|
wxString n = data.GetPrinterName();
|
|
|
|
#endif
|
2003-12-19 08:17:48 +00:00
|
|
|
if (name != NULL && sz_s > 0)
|
|
|
|
{
|
|
|
|
strncpy(name, n, sz_s);
|
|
|
|
name[sz_s-1] = '\0';
|
|
|
|
}
|
|
|
|
return n.Length();
|
|
|
|
}
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
BOOLEAN xvt_print_open(void)
|
|
|
|
{
|
|
|
|
return m_po == NULL;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2003-10-28 15:10:01 +00:00
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void CreateAbortWindow()
|
|
|
|
{
|
|
|
|
wxFrame* parent = (wxFrame*)TASK_WIN;
|
|
|
|
wxPrintAbortDialog* win = new wxPrintAbortDialog(parent, "Stampa" , wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE);
|
|
|
|
|
|
|
|
wxBoxSizer *button_sizer = new wxBoxSizer( wxVERTICAL );
|
|
|
|
button_sizer->Add( new wxStaticText( win, -1, "Stampa in corso..."), 0, wxALL, 10 );
|
|
|
|
button_sizer->Add( new wxButton( win, wxID_CANCEL, wxT("Annulla") ), 0, wxALL | wxALIGN_CENTER, 10 );
|
|
|
|
|
|
|
|
win->SetAutoLayout( TRUE );
|
|
|
|
win->SetSizer( button_sizer );
|
|
|
|
|
|
|
|
button_sizer->Fit(win);
|
|
|
|
button_sizer->SetSizeHints (win) ;
|
|
|
|
|
|
|
|
win->Show();
|
|
|
|
win->Update();
|
|
|
|
|
|
|
|
wxPrinterBase::sm_abortWindow = win;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DestroyAbortWindow()
|
|
|
|
{
|
|
|
|
if (wxPrinterBase::sm_abortWindow != NULL)
|
|
|
|
{
|
|
|
|
wxPrinterBase::sm_abortWindow->Hide();
|
|
|
|
delete wxPrinterBase::sm_abortWindow;
|
|
|
|
wxPrinterBase::sm_abortWindow = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
BOOLEAN xvt_print_start_thread(BOOLEAN(*print_fcn)(long), long data)
|
|
|
|
{
|
2003-10-28 15:10:01 +00:00
|
|
|
wxBeginBusyCursor();
|
2002-02-28 14:26:23 +00:00
|
|
|
m_po = new TwxPrintOut;
|
2003-10-28 15:10:01 +00:00
|
|
|
wxEndBusyCursor();
|
2002-02-28 14:26:23 +00:00
|
|
|
|
2003-10-28 15:10:01 +00:00
|
|
|
CreateAbortWindow();
|
2004-03-25 16:35:20 +00:00
|
|
|
const BOOLEAN aborted = print_fcn(data);
|
2003-10-28 15:10:01 +00:00
|
|
|
DestroyAbortWindow();
|
2002-02-28 14:26:23 +00:00
|
|
|
|
|
|
|
m_po->OnEndDocument();
|
|
|
|
m_po->OnEndPrinting();
|
2003-10-30 18:13:09 +00:00
|
|
|
|
2002-02-28 14:26:23 +00:00
|
|
|
delete m_po; m_po = NULL;
|
2003-10-28 15:10:01 +00:00
|
|
|
|
2004-03-25 16:35:20 +00:00
|
|
|
return aborted;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
BOOLEAN xvt_print_open_page(PRINT_RCD* precp)
|
|
|
|
{
|
2002-02-28 14:26:23 +00:00
|
|
|
BOOLEAN ok = m_po != NULL;
|
|
|
|
if (ok)
|
2003-02-05 14:26:24 +00:00
|
|
|
{
|
2003-10-28 15:10:01 +00:00
|
|
|
if (wxPrinterBase::sm_abortIt)
|
|
|
|
ok = FALSE;
|
|
|
|
else
|
|
|
|
m_po->GetDC()->StartPage();
|
2003-02-05 14:26:24 +00:00
|
|
|
}
|
2003-05-22 15:25:25 +00:00
|
|
|
return ok;
|
2002-02-28 14:26:23 +00:00
|
|
|
}
|
|
|
|
|
2003-04-16 15:50:37 +00:00
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// Added by XVAGA
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
#ifdef LINUX
|
2004-04-27 19:09:18 +00:00
|
|
|
static const char * cups_file = "/etc/cups/printers.conf";
|
|
|
|
static const char * cups_local_file = "./printers.conf";
|
|
|
|
static const char * prcap_local_file = "./printcap";
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
static bool is_cups()
|
|
|
|
{
|
|
|
|
static int printer_system = -1;
|
|
|
|
|
|
|
|
if (printer_system < 0)
|
2004-04-27 19:09:18 +00:00
|
|
|
printer_system = xvt_fsys_file_exists(cups_file) ? 1 : 2;
|
|
|
|
|
|
|
|
return printer_system == 1;
|
2003-05-22 15:25:25 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-04-16 15:50:37 +00:00
|
|
|
SLIST xvt_print_list_devices()
|
|
|
|
{
|
|
|
|
SLIST list = xvt_slist_create();
|
|
|
|
#ifdef WIN32
|
2003-04-17 12:53:36 +00:00
|
|
|
char buf[4096]; memset(buf, 0, sizeof(buf));
|
2003-04-16 15:50:37 +00:00
|
|
|
GetProfileString("devices", NULL, "", buf, sizeof(buf));
|
|
|
|
int start = 0;
|
2003-04-17 12:53:36 +00:00
|
|
|
for (int i = 0; i < sizeof(buf); i++) if (buf[i] == '\0')
|
2003-04-16 15:50:37 +00:00
|
|
|
{
|
2003-04-17 12:53:36 +00:00
|
|
|
const char* pname = buf+start;
|
2003-05-22 15:25:25 +00:00
|
|
|
if (*pname == '\0')
|
2003-04-17 12:53:36 +00:00
|
|
|
break;
|
|
|
|
xvt_slist_add_at_elt(list, NULL, pname, NULL);
|
|
|
|
start = i+1;
|
2003-04-16 15:50:37 +00:00
|
|
|
}
|
|
|
|
#else
|
2003-05-22 15:25:25 +00:00
|
|
|
if (is_cups())
|
|
|
|
{
|
2004-04-27 19:09:18 +00:00
|
|
|
ifstream p(cups_local_file);
|
2003-05-22 15:25:25 +00:00
|
|
|
char line[4096];
|
2004-04-27 19:09:18 +00:00
|
|
|
const char * str_to_find = "Printer";
|
|
|
|
|
2003-05-22 15:25:25 +00:00
|
|
|
while (p.getline(line, sizeof(line)))
|
|
|
|
{
|
2004-04-27 19:09:18 +00:00
|
|
|
char * s;
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
if (line[0] == '<' && line[1] != '/' &&
|
|
|
|
(s = strstr(line, str_to_find)) != NULL)
|
|
|
|
{
|
|
|
|
s += strlen(str_to_find);
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
while (isspace(*s))
|
|
|
|
s++;
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
if (*s)
|
|
|
|
{
|
|
|
|
char * l = s + strlen(s) - 1;
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
while (*l == '>' || isspace(*l))
|
2003-05-22 15:25:25 +00:00
|
|
|
l--;
|
2004-04-27 19:09:18 +00:00
|
|
|
*(l + 1) = '\0';
|
|
|
|
xvt_slist_add_at_elt(list, NULL, s, 0L);
|
2003-05-22 15:25:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-04-27 19:09:18 +00:00
|
|
|
ifstream p(prcap_local_file); // vedere
|
2003-05-22 15:25:25 +00:00
|
|
|
char line[4096];
|
|
|
|
|
|
|
|
while (p.getline(line, sizeof(line)))
|
|
|
|
{
|
|
|
|
if (line[0] != '#')
|
|
|
|
{
|
|
|
|
const int len = strlen(line);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
const char c = line[i];
|
|
|
|
|
|
|
|
if (!(isalpha(c) || isdigit(c) || isblank(c)))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
line[i] = '\0';
|
|
|
|
xvt_slist_add_at_elt(list, NULL, line, 0L);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-04-16 15:50:37 +00:00
|
|
|
#endif
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOLEAN xvt_print_set_default_device(const char* name)
|
2003-05-22 15:25:25 +00:00
|
|
|
{
|
2003-04-16 15:50:37 +00:00
|
|
|
BOOLEAN ok = name && *name > ' ';
|
|
|
|
#ifdef WIN32
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
wxString pdev(name);
|
|
|
|
if (pdev.Find(',') < 0)
|
|
|
|
{
|
2003-05-22 15:25:25 +00:00
|
|
|
char szDevice[256];
|
2003-04-17 12:53:36 +00:00
|
|
|
::GetProfileString ("devices", pdev, "", szDevice, sizeof(szDevice));
|
2003-04-16 15:50:37 +00:00
|
|
|
pdev << ',' << szDevice;
|
2003-05-22 15:25:25 +00:00
|
|
|
}
|
|
|
|
ok = ::WriteProfileString("windows", "device", pdev) != 0;
|
2003-04-16 15:50:37 +00:00
|
|
|
}
|
|
|
|
#endif
|
2003-05-22 15:25:25 +00:00
|
|
|
return ok;
|
2003-04-16 15:50:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOLEAN xvt_print_get_default_device(char* name, int namesize)
|
|
|
|
{
|
2003-05-22 15:25:25 +00:00
|
|
|
bool ok = FALSE;
|
2003-04-17 12:53:36 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
ok = ::GetProfileString ("windows", "device", ",,,", name, namesize) != 0;
|
|
|
|
#else
|
2003-05-22 15:25:25 +00:00
|
|
|
*name = '\0';
|
|
|
|
if (is_cups())
|
|
|
|
{
|
2004-04-27 19:09:18 +00:00
|
|
|
ifstream p(cups_local_file);
|
2003-05-22 15:25:25 +00:00
|
|
|
char line[4096];
|
2004-04-27 19:09:18 +00:00
|
|
|
const char * str_to_find = "<DefaultPrinter";
|
2003-05-22 15:25:25 +00:00
|
|
|
|
|
|
|
while (p.getline(line, sizeof(line)))
|
|
|
|
{
|
2004-04-27 19:09:18 +00:00
|
|
|
char * s = strstr(line, str_to_find) ;
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
if (s != NULL)
|
|
|
|
{
|
|
|
|
s += strlen(str_to_find);
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
while (isspace(*s))
|
|
|
|
s++;
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
if (*s)
|
|
|
|
{
|
|
|
|
char * l = s + strlen(s) - 1;
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2004-04-27 19:09:18 +00:00
|
|
|
while (*l == '>' || isspace(*l))
|
|
|
|
l--;
|
|
|
|
*(l + 1) = '\0';
|
|
|
|
strcpy(name, s);
|
2003-05-22 15:25:25 +00:00
|
|
|
}
|
2004-04-27 19:09:18 +00:00
|
|
|
ok = TRUE;
|
2003-05-22 15:25:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-04-17 12:53:36 +00:00
|
|
|
#endif
|
2003-05-22 15:25:25 +00:00
|
|
|
|
2003-04-16 15:50:37 +00:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2004-02-06 15:16:17 +00:00
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// Gestione files di configurazione
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
int xvt_fsys_get_campo_stp_value(const char* name, char* value, int valsize)
|
|
|
|
{
|
|
|
|
BOOLEAN bFound = FALSE;
|
|
|
|
#ifdef WIN32
|
|
|
|
const char* stpfile = "c:/campo.stp";
|
|
|
|
int p;
|
|
|
|
DIRECTORY dir;
|
|
|
|
char exedir[_MAX_PATH], path[_MAX_PATH];
|
|
|
|
xvt_fsys_get_default_dir(&dir);
|
|
|
|
xvt_fsys_convert_dir_to_str(&dir, exedir, sizeof(exedir));
|
|
|
|
|
|
|
|
for (p = 1; ; p++)
|
|
|
|
{
|
|
|
|
int len = 0;
|
|
|
|
char para[4]; sprintf(para, "%d", p);
|
|
|
|
len = xvt_sys_get_profile_string(stpfile, para, "Program", "", path, sizeof(path));
|
|
|
|
if (len <= 0)
|
|
|
|
break;
|
|
|
|
if (path[len-1] == '\\' || path[len-1] == '/')
|
|
|
|
{
|
|
|
|
len--;
|
|
|
|
path[len] = '\0';
|
|
|
|
}
|
|
|
|
if (xvt_str_compare_ignoring_case(path, exedir) == 0)
|
|
|
|
{
|
|
|
|
xvt_sys_get_profile_string(stpfile, para, name, "", value, valsize);
|
|
|
|
bFound = *value > ' ';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return bFound;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
@($) CGetCampoIni FILES
|
|
|
|
|
|
|
|
@(ID)
|
|
|
|
Restituisce il nome del file che contiene il prefisso corrente.
|
|
|
|
@(FD)
|
|
|
|
|
|
|
|
@(ISV)
|
|
|
|
s,s1 = stringhe di lavoro.
|
|
|
|
|
|
|
|
Versione WIN32 e LINUX.
|
|
|
|
@(FSV)
|
2004-03-18 12:16:40 +00:00
|
|
|
*/
|
2004-02-06 15:16:17 +00:00
|
|
|
const char* xvt_fsys_get_campo_ini()
|
|
|
|
{
|
|
|
|
static char* prawin = NULL;
|
|
|
|
if (prawin == NULL)
|
|
|
|
{
|
|
|
|
BOOLEAN bFound = FALSE;
|
2004-03-12 14:21:37 +00:00
|
|
|
char exedir[_MAX_PATH], path[_MAX_PATH];
|
2004-02-06 15:16:17 +00:00
|
|
|
// Nelle installazioni sfigate con programmi in rete cerca di stabilire il percorso locale di Campo.ini
|
2004-03-18 12:16:40 +00:00
|
|
|
DIRECTORY dir;
|
2004-03-12 14:21:37 +00:00
|
|
|
|
2004-02-06 15:16:17 +00:00
|
|
|
xvt_fsys_get_default_dir(&dir);
|
|
|
|
xvt_fsys_convert_dir_to_str(&dir, exedir, sizeof(exedir));
|
2004-03-18 12:16:40 +00:00
|
|
|
#ifdef WIN32
|
2004-02-06 15:16:17 +00:00
|
|
|
if (xvt_fsys_is_network_drive(exedir))
|
|
|
|
bFound = xvt_fsys_get_campo_stp_value("CampoIni", path, sizeof(path));
|
2004-04-05 13:03:51 +00:00
|
|
|
|
|
|
|
if (!bFound)
|
|
|
|
{
|
|
|
|
/* const char* pp = getenv("PREFPATH");
|
|
|
|
if (pp != NULL)
|
2004-02-06 15:16:17 +00:00
|
|
|
{
|
2004-04-05 13:03:51 +00:00
|
|
|
char dri[_MAX_DRIVE], dir[_MAX_PATH];
|
|
|
|
xvt_fsys_parse_pathname(pp, dri, dir, NULL, NULL, NULL);
|
|
|
|
xvt_fsys_build_pathname(path, dri, dir, "campo", "ini", NULL);
|
|
|
|
bFound = TRUE;
|
|
|
|
}*/
|
|
|
|
if (xvt_sys_get_os_version() == XVT_WS_WIN_SERVER)
|
|
|
|
{
|
|
|
|
xvt_fsys_build_pathname(path, NULL, wxGetHomeDir(), "campo", "ini", NULL);
|
|
|
|
bFound = xvt_fsys_file_exists(path);
|
|
|
|
if (!bFound)
|
2004-02-06 15:16:17 +00:00
|
|
|
{
|
2004-04-05 13:03:51 +00:00
|
|
|
char pathstd[_MAX_PATH];
|
|
|
|
xvt_fsys_build_pathname(pathstd, NULL, exedir, "campo", "ini", NULL);
|
|
|
|
if (xvt_fsys_file_exists(pathstd))
|
|
|
|
wxCopyFile(pathstd, path);
|
2004-02-06 15:16:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-04-05 13:03:51 +00:00
|
|
|
|
2004-04-01 09:16:46 +00:00
|
|
|
if (!bFound)
|
|
|
|
xvt_fsys_build_pathname(path, NULL, exedir, "campo", "ini", NULL);
|
|
|
|
#else
|
2004-03-31 12:57:12 +00:00
|
|
|
if (!bFound)
|
|
|
|
{
|
2004-04-01 09:16:46 +00:00
|
|
|
char username[32];
|
2004-03-31 12:57:12 +00:00
|
|
|
char ininame[_MAX_FNAME];
|
|
|
|
|
2004-04-01 09:16:46 +00:00
|
|
|
xvt_sys_get_user_name(username, sizeof(username));
|
|
|
|
if (xvt_str_compare_ignoring_case(username, "root") == 0)
|
2004-03-31 12:57:12 +00:00
|
|
|
*username = '\0';
|
|
|
|
|
|
|
|
sprintf(ininame, "campo%s", username);
|
|
|
|
xvt_fsys_build_pathname(path, NULL, exedir, ininame, "ini", NULL);
|
|
|
|
if (!xvt_fsys_file_exists(path) && *username > ' ')
|
|
|
|
{
|
|
|
|
char pathstd[_MAX_PATH];
|
|
|
|
xvt_fsys_build_pathname(pathstd, NULL, exedir, "campo", "ini", NULL);
|
|
|
|
if (xvt_fsys_file_exists(pathstd))
|
|
|
|
wxCopyFile(pathstd, path);
|
|
|
|
}
|
2004-04-01 09:16:46 +00:00
|
|
|
}
|
|
|
|
#endif
|
2004-03-31 12:57:12 +00:00
|
|
|
if (!xvt_fsys_file_exists(path))
|
|
|
|
{
|
|
|
|
char msg[256];
|
|
|
|
sprintf(msg, "Impossibile aprire '%s'", (const char *)path);
|
|
|
|
xvt_dm_post_fatal_exit(msg);
|
|
|
|
}
|
2004-02-06 15:16:17 +00:00
|
|
|
prawin = xvt_str_duplicate(path);
|
|
|
|
}
|
|
|
|
return prawin;
|
|
|
|
}
|