* include/hbsocket.ch
+ added HB_SOCKET_ERR_NONE
* src/rtl/hbsocket.c
* clear socket error when hb_socketRecv*() or hb_socketSend*() returns
value greater then 0
% removed unnecessary error code setting in MS-Windows builds
of hb_socketGetIFaces()
* src/rtl/filesys.c
! allocate dynamically buffer for current directory name if default
one is too small when current disk is checked
* src/rtl/hbzlib.c
* use hb_xalloc()/hb_xfree() to allocate/free memory during
ZLIB compression and decompression instead of ZLIB default
ones (finished code started in Viktor's branch)
* src/rtl/tlabel.prg
* src/rtl/treport.prg
% use hb_ATokens() instead of local functions ListAsArray()
* simplified reading labels and reports from files
* src/rtl/teditor.prg
* src/rtl/tget.prg
* src/rtl/tlabel.prg
* src/rtl/treport.prg
* synced with Viktor's branch:
removed explicit NIL from parameters, formatting, updated comments
and variable names, use FOR EACH and SWITCH statements,
use hb_defaultValue(), use hb_StrShrink(), formatting, few fixes
* src/rtl/langcomp.prg
* synced with Viktor's branch
* src/rtl/memoedit.prg
* synced with Viktor's branch, optimizations, formatting and fixes:
; 2014-03-28 13:09 UTC+0100 Viktor Szakats
+ MemoEdit(): allow BLOCK and SYMBOL types for user callbacks
(only in the default, non-strict mode)
! MemoEdit(): fixed to only handle certain types of events in ME_INIT
stage in harmony with Cl*pper documentation
! MemoEdit(): fixed to not get into an infinite loop on initialization
when user callback is returning unhandled value
https://github.com/harbour/core/issues/21
! MemoEdit()/HBMemoEditor():KeyboardHook(): fixed to fall back to
default handling of K_ESC if getting called recursively
https://github.com/harbour/core/issues/21
+ HBMemoEditor():HandleUserKey(): now returns whether the event was
handled (as logical value) (previously: Self) [INCOMPATIBLE]
* fixed some misleading variable names
; 2014-01-28 03:11 UTC+0100 Viktor Szakáts
! MemoEdit() fixed to pass-through without interactivity
when the user function is a boolean .F.
; 2014-01-27 15:15 UTC+0100 Viktor Szakáts
% abort key checking optimized and made unicode compatible
* src/rtl/listbox.prg
* synced with Viktor's branch, optimizations, formatting and fixes:
; 2014-07-21 08:56 UTC+0200 Viktor Szakats
! ListBox():findData(): fixed to be able to search for non-string
data, to the same extent Cl*ipper is able to.
! ListBox():findData(): fixed exact/case-insensitive regression
from 6f8508ff54a3955822b36bf4a65a2775a11bab23
; 2014-07-21 03:26 UTC+0200 Viktor Szakats
+ LISTBOX object instance area made compatible with Cl*pper
(relevant when object is accessed as array)
; 2014-07-21 01:20 UTC+0200 Viktor Szakats
* renamed variable and macro to reflect their type
+ ListBox():findData(): documented potential RTE
; 2014-07-21 01:04 UTC+0200 Viktor Szakats
% ListBox():findText(), ListBox():findData(): use hb_LeftEq[I]()
! ListBox():findText(), ListBox():findData(): fixed to not RTrim()
while searching in EXACT mode. Regression from f61409bf19
+ ListBox():findText(), ListBox():findData(): allow to search
for any type of data in HB_CLP_STRICT mode to mimic Cl*pper behavior
! ListBox():findText(): fixed to allow zero length search text,
like Cl*pper. Regression from 93d3a46d84
! ListBox():addItem( cText, cData ): fixed to allow any type for cData,
not just NIL and string, like Cl*pper
+ ListBox():setData(): documented a Cl*pper bug
; 2014-03-09 18:19 UTC+0100 Viktor Szakáts
! ListBox():scroll() fixed to ignore non-numeric parameter
(like Cl*pper) instead of an RTE
413 lines
13 KiB
Plaintext
413 lines
13 KiB
Plaintext
/*
|
|
* Harbour Project source code:
|
|
* HBLabelForm class and __LabelForm()
|
|
*
|
|
* Copyright 2000 Luiz Rafael Culik <Culik@sl.conex.net>
|
|
* www - http://harbour-project.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING.txt. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
/* NOTE: CA-Cl*pper 5.x uses DevPos(), DevOut() to display messages
|
|
on screen. Harbour uses Disp*() functions only. [vszakats] */
|
|
|
|
#include "hbclass.ch"
|
|
|
|
#include "error.ch"
|
|
#include "fileio.ch"
|
|
#include "inkey.ch"
|
|
|
|
#define _LF_SAMPLES 2 // "Do you want more samples?"
|
|
#define _LF_YN 12 // "Y/N"
|
|
|
|
#define LBL_REMARK 1 // Character, remark from label file
|
|
#define LBL_HEIGHT 2 // Numeric, label height
|
|
#define LBL_WIDTH 3 // Numeric, label width
|
|
#define LBL_LMARGIN 4 // Numeric, left margin
|
|
#define LBL_LINES 5 // Numeric, lines between labels
|
|
#define LBL_SPACES 6 // Numeric, spaces between labels
|
|
#define LBL_ACROSS 7 // Numeric, number of labels across
|
|
#define LBL_FIELDS 8 // Array of Field arrays
|
|
|
|
#define LBL_COUNT 8 // Numeric, number of label fields
|
|
|
|
// Field array definitions ( one array per field )
|
|
#define LF_EXP 1 // Block, field expression
|
|
#define LF_TEXT 2 // Character, text of field expression
|
|
#define LF_BLANK 3 // Logical, compress blank fields, .T.=Yes .F.=No
|
|
|
|
#define LF_COUNT 3 // Numeric, number of elements in field array
|
|
|
|
#define BUFFSIZE 1034 // Size of label file
|
|
#define FILEOFFSET 74 // Start of label content descriptions
|
|
#define FIELDSIZE 60
|
|
#define REMARKOFFSET 2
|
|
#define REMARKSIZE 60
|
|
#define HEIGHTOFFSET 62
|
|
#define HEIGHTSIZE 2
|
|
#define WIDTHOFFSET 64
|
|
#define WIDTHSIZE 2
|
|
#define LMARGINOFFSET 66
|
|
#define LMARGINSIZE 2
|
|
#define LINESOFFSET 68
|
|
#define LINESSIZE 2
|
|
#define SPACESOFFSET 70
|
|
#define SPACESSIZE 2
|
|
#define ACROSSOFFSET 72
|
|
#define ACROSSSIZE 2
|
|
|
|
CREATE CLASS HBLabelForm
|
|
|
|
VAR aLabelData AS ARRAY INIT {}
|
|
VAR aBandToPrint AS ARRAY
|
|
VAR cBlank AS STRING INIT ""
|
|
VAR lOneMoreBand AS LOGICAL INIT .T.
|
|
VAR nCurrentCol AS NUMERIC // The current column in the band
|
|
|
|
METHOD New( cLBLName, lPrinter, cAltFile, lNoConsole, bFor, ;
|
|
bWhile, nNext, nRecord, lRest, lSample )
|
|
|
|
METHOD ExecuteLabel()
|
|
METHOD SampleLabels()
|
|
METHOD LoadLabel( cLblFile )
|
|
|
|
ENDCLASS
|
|
|
|
METHOD New( cLBLName, lPrinter, cAltFile, lNoConsole, bFor, ;
|
|
bWhile, nNext, nRecord, lRest, lSample ) CLASS HBLabelForm
|
|
|
|
LOCAL lPrintOn := .F. // PRINTER status
|
|
LOCAL lConsoleOn // CONSOLE status
|
|
LOCAL cExtraFile, lExtraState // EXTRA file status
|
|
LOCAL xBreakVal, lBroke := .F.
|
|
LOCAL err
|
|
LOCAL OldMargin
|
|
|
|
::aBandToPrint := {} // Array( 5 )
|
|
::nCurrentCol := 1
|
|
|
|
// Resolve parameters
|
|
IF cLBLName == NIL
|
|
err := ErrorNew()
|
|
err:severity := ES_ERROR
|
|
err:genCode := EG_ARG
|
|
err:subSystem := "FRMLBL"
|
|
Eval( ErrorBlock(), err )
|
|
ELSE
|
|
/* NOTE: CA-Cl*pper does an RTrim() on the filename here,
|
|
but in Harbour we're using _SET_TRIMFILENAME. [vszakats] */
|
|
IF Set( _SET_DEFEXTENSIONS )
|
|
cLBLName := hb_FNameExtSetDef( cLBLName, ".lbl" )
|
|
ENDIF
|
|
ENDIF
|
|
|
|
__defaultNIL( @lPrinter, .F. )
|
|
__defaultNIL( @lSample, .F. )
|
|
|
|
// Set output devices
|
|
IF lPrinter // To the printer
|
|
lPrintOn := Set( _SET_PRINTER, lPrinter )
|
|
ENDIF
|
|
|
|
lConsoleOn := Set( _SET_CONSOLE )
|
|
Set( _SET_CONSOLE, ! lNoConsole .AND. lConsoleOn )
|
|
|
|
IF ! Empty( cAltFile ) // To file
|
|
lExtraState := Set( _SET_EXTRA, .T. )
|
|
cExtraFile := Set( _SET_EXTRAFILE, cAltFile )
|
|
ENDIF
|
|
|
|
OldMargin := Set( _SET_MARGIN, 0 )
|
|
|
|
BEGIN SEQUENCE
|
|
|
|
::aLabelData := ::LoadLabel( cLBLName ) // Load the (.lbl) into an array
|
|
|
|
// Add to the left margin if a SET MARGIN has been defined
|
|
::aLabelData[ LBL_LMARGIN ] += OldMargin
|
|
|
|
ASize( ::aBandToPrint, Len( ::aLabelData[ LBL_FIELDS ] ) )
|
|
AFill( ::aBandToPrint, Space( ::aLabelData[ LBL_LMARGIN ] ) )
|
|
|
|
// Create enough space for a blank record
|
|
::cBlank := Space( ::aLabelData[ LBL_WIDTH ] + ::aLabelData[ LBL_SPACES ] )
|
|
|
|
// Handle sample labels
|
|
IF lSample
|
|
::SampleLabels()
|
|
ENDIF
|
|
|
|
// Execute the actual label run based on matching records
|
|
dbEval( {|| ::ExecuteLabel() }, bFor, bWhile, nNext, nRecord, lRest )
|
|
|
|
// Print the last band if there is one
|
|
IF ::lOneMoreBand
|
|
// Print the band
|
|
AEval( ::aBandToPrint, {| BandLine | PrintIt( BandLine ) } )
|
|
ENDIF
|
|
|
|
RECOVER USING xBreakVal
|
|
|
|
lBroke := .T.
|
|
|
|
END SEQUENCE
|
|
|
|
// Clean up and leave
|
|
::aLabelData := {} // Recover the space
|
|
::aBandToPrint := {}
|
|
::nCurrentCol := 1
|
|
::cBlank := ""
|
|
::lOneMoreBand := .T.
|
|
|
|
// clean up
|
|
Set( _SET_PRINTER, lPrintOn ) // Set the printer back to prior state
|
|
Set( _SET_CONSOLE, lConsoleOn ) // Set the console back to prior state
|
|
|
|
IF ! Empty( cAltFile ) // Set extrafile back
|
|
Set( _SET_EXTRAFILE, cExtraFile )
|
|
Set( _SET_EXTRA, lExtraState )
|
|
ENDIF
|
|
|
|
IF lBroke
|
|
BREAK xBreakVal // continue breaking
|
|
ENDIF
|
|
|
|
Set( _SET_MARGIN, OldMargin )
|
|
|
|
RETURN Self
|
|
|
|
METHOD ExecuteLabel() CLASS HBLabelForm
|
|
|
|
LOCAL nField, aField, nMoreLines, aBuffer := {}, cBuffer
|
|
LOCAL item
|
|
|
|
// Load the current record into aBuffer
|
|
|
|
FOR EACH aField IN ::aLabelData[ LBL_FIELDS ]
|
|
|
|
IF aField != NIL
|
|
|
|
cBuffer := ;
|
|
PadR( Eval( aField[ LF_EXP ] ), ::aLabelData[ LBL_WIDTH ] ) + ;
|
|
Space( ::aLabelData[ LBL_SPACES ] )
|
|
|
|
IF aField[ LF_BLANK ]
|
|
IF ! Empty( cBuffer )
|
|
AAdd( aBuffer, cBuffer )
|
|
ENDIF
|
|
ELSE
|
|
AAdd( aBuffer, cBuffer )
|
|
ENDIF
|
|
ELSE
|
|
AAdd( aBuffer, NIL )
|
|
ENDIF
|
|
NEXT
|
|
|
|
ASize( aBuffer, Len( ::aLabelData[ LBL_FIELDS ] ) )
|
|
|
|
// Add aBuffer to ::aBandToPrint
|
|
FOR nField := 1 TO Len( ::aLabelData[ LBL_FIELDS ] )
|
|
::aBandToPrint[ nField ] += ;
|
|
iif( aBuffer[ nField ] == NIL, ::cBlank, aBuffer[ nField ] )
|
|
NEXT
|
|
|
|
IF ::nCurrentCol == ::aLabelData[ LBL_ACROSS ]
|
|
|
|
// trim
|
|
FOR EACH item IN ::aBandToPrint
|
|
item := RTrim( item )
|
|
NEXT
|
|
|
|
::lOneMoreBand := .F.
|
|
::nCurrentCol := 1
|
|
|
|
// Print the band
|
|
AEval( ::aBandToPrint, {| BandLine | PrintIt( BandLine ) } )
|
|
|
|
nMoreLines := ::aLabelData[ LBL_HEIGHT ] - Len( ::aBandToPrint )
|
|
FOR nField := 1 TO nMoreLines
|
|
PrintIt()
|
|
NEXT
|
|
|
|
// Add the spaces between the label lines
|
|
FOR nField := 1 TO ::aLabelData[ LBL_LINES ]
|
|
PrintIt()
|
|
NEXT
|
|
|
|
// Clear out the band
|
|
AFill( ::aBandToPrint, Space( ::aLabelData[ LBL_LMARGIN ] ) )
|
|
ELSE
|
|
::lOneMoreBand := .T.
|
|
::nCurrentCol++
|
|
ENDIF
|
|
|
|
RETURN Self
|
|
|
|
METHOD SampleLabels() CLASS HBLabelForm
|
|
|
|
LOCAL cKey, lMoreSamples := .T., nField
|
|
LOCAL aBand := {}
|
|
|
|
// Create the sample label row
|
|
|
|
ASize( aBand, ::aLabelData[ LBL_HEIGHT ] )
|
|
AFill( aBand, Space( ::aLabelData[ LBL_LMARGIN ] ) + ;
|
|
Replicate( Replicate( "*", ::aLabelData[ LBL_WIDTH ] ) + ;
|
|
Space( ::aLabelData[ LBL_SPACES ] ), ::aLabelData[ LBL_ACROSS ] ) )
|
|
|
|
// Prints sample labels
|
|
DO WHILE lMoreSamples
|
|
|
|
// Print the samples
|
|
AEval( aBand, {| BandLine | PrintIt( BandLine ) } )
|
|
|
|
// Add the spaces between the label lines
|
|
FOR nField := 1 TO ::aLabelData[ LBL_LINES ]
|
|
PrintIt()
|
|
NEXT
|
|
|
|
// Prompt for more
|
|
DispOutAt( Row(), 0, __natMsg( _LF_SAMPLES ) + " (" + __natMsg( _LF_YN ) + ")" )
|
|
cKey := hb_keyChar( Inkey( 0 ) )
|
|
DispOut( cKey )
|
|
IF Row() == MaxRow()
|
|
hb_Scroll( 0, 0, MaxRow(), MaxCol(), 1 )
|
|
SetPos( MaxRow(), 0 )
|
|
ELSE
|
|
SetPos( Row() + 1, 0 )
|
|
ENDIF
|
|
IF __natIsNegative( cKey ) // Don't give sample labels
|
|
lMoreSamples := .F.
|
|
ENDIF
|
|
ENDDO
|
|
|
|
RETURN Self
|
|
|
|
METHOD LoadLabel( cLblFile ) CLASS HBLabelForm
|
|
|
|
LOCAL i // Counters
|
|
LOCAL cBuff := Space( BUFFSIZE ) // File buffer
|
|
LOCAL nHandle // File handle
|
|
LOCAL nOffset := FILEOFFSET // Offset into file
|
|
LOCAL cFieldText // Text expression container
|
|
LOCAL err // error object
|
|
|
|
LOCAL cPath // iteration variable
|
|
|
|
// Create and initialize default label array
|
|
LOCAL aLabel[ LBL_COUNT ]
|
|
|
|
aLabel[ LBL_REMARK ] := Space( 60 ) // Label remark
|
|
aLabel[ LBL_HEIGHT ] := 5 // Label height
|
|
aLabel[ LBL_WIDTH ] := 35 // Label width
|
|
aLabel[ LBL_LMARGIN ] := 0 // Left margin
|
|
aLabel[ LBL_LINES ] := 1 // Lines between labels
|
|
aLabel[ LBL_SPACES ] := 0 // Spaces between labels
|
|
aLabel[ LBL_ACROSS ] := 1 // Number of labels across
|
|
aLabel[ LBL_FIELDS ] := {} // Array of label fields
|
|
|
|
// Open the label file
|
|
IF ( nHandle := FOpen( cLblFile ) ) == F_ERROR .AND. ;
|
|
Empty( hb_FNameDir( cLblFile ) )
|
|
|
|
// Search through default path; attempt to open label file
|
|
FOR EACH cPath IN hb_ATokens( StrTran( Set( _SET_DEFAULT ), ",", ";" ), ";" )
|
|
IF ( nHandle := FOpen( hb_DirSepAdd( cPath ) + cLblFile ) ) != F_ERROR
|
|
EXIT
|
|
ENDIF
|
|
NEXT
|
|
ENDIF
|
|
|
|
// File error
|
|
IF nHandle == F_ERROR
|
|
err := ErrorNew()
|
|
err:severity := ES_ERROR
|
|
err:genCode := EG_OPEN
|
|
err:subSystem := "FRMLBL"
|
|
err:osCode := FError()
|
|
err:filename := cLblFile
|
|
Eval( ErrorBlock(), err )
|
|
ELSE
|
|
IF FRead( nHandle, @cBuff, BUFFSIZE ) > 0 .AND. FError() == 0
|
|
// Load label dimension into aLabel
|
|
aLabel[ LBL_REMARK ] := hb_BSubStr( cBuff, REMARKOFFSET, REMARKSIZE )
|
|
aLabel[ LBL_HEIGHT ] := Bin2W( hb_BSubStr( cBuff, HEIGHTOFFSET, HEIGHTSIZE ) )
|
|
aLabel[ LBL_WIDTH ] := Bin2W( hb_BSubStr( cBuff, WIDTHOFFSET, WIDTHSIZE ) )
|
|
aLabel[ LBL_LMARGIN ] := Bin2W( hb_BSubStr( cBuff, LMARGINOFFSET, LMARGINSIZE ) )
|
|
aLabel[ LBL_LINES ] := Bin2W( hb_BSubStr( cBuff, LINESOFFSET, LINESSIZE ) )
|
|
aLabel[ LBL_SPACES ] := Bin2W( hb_BSubStr( cBuff, SPACESOFFSET, SPACESSIZE ) )
|
|
aLabel[ LBL_ACROSS ] := Bin2W( hb_BSubStr( cBuff, ACROSSOFFSET, ACROSSSIZE ) )
|
|
|
|
FOR i := 1 TO aLabel[ LBL_HEIGHT ]
|
|
|
|
// Get the text of the expression
|
|
cFieldText := RTrim( hb_BSubStr( cBuff, nOffset, FIELDSIZE ) )
|
|
nOffset += FIELDSIZE
|
|
|
|
IF Empty( cFieldText )
|
|
AAdd( aLabel[ LBL_FIELDS ], NIL )
|
|
ELSE
|
|
AAdd( aLabel[ LBL_FIELDS ], { ;
|
|
/* LF_EXP */ hb_macroBlock( cFieldText ), ;
|
|
/* LF_TEXT */ cFieldText, ;
|
|
/* LF_BLANK */ .T. } )
|
|
ENDIF
|
|
NEXT
|
|
ENDIF
|
|
|
|
FClose( nHandle ) // Close file
|
|
ENDIF
|
|
|
|
RETURN aLabel
|
|
|
|
FUNCTION __LabelForm( cLBLName, lPrinter, cAltFile, lNoConsole, bFor, ;
|
|
bWhile, nNext, nRecord, lRest, lSample )
|
|
|
|
RETURN HBLabelForm():New( cLBLName, lPrinter, cAltFile, lNoConsole, bFor, ;
|
|
bWhile, nNext, nRecord, lRest, lSample )
|
|
|
|
STATIC PROCEDURE PrintIt( cString )
|
|
|
|
QQOut( hb_defaultValue( cString, "" ) )
|
|
QOut()
|
|
|
|
RETURN
|