Building Harbour gtxwc (libgtxwc.a)

Building Harbour gtxwc (libgtxwc.a)

Postby Antonio Linares » Sun Mar 17, 2019 10:57 pm

In harbour/src/rtl/gtxwc: (X11 GT driver)

gcc -c gtxwc.c -I../../../include
ar q libgtxwc.a gtxwc.o
ranlib libgtxwc.a

To use hbmk2 with gtxwc: (from harbour/tests)
../bin/linux/gcc/hbmk2 hello -gtxwc
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Building Harbour gtxwc (libgtxwc.a)

Postby Antonio Linares » Sun Mar 17, 2019 11:19 pm

Testing X11 without gtxwc

Xlib manual:
https://tronche.com/gui/x/xlib/
http://www.lsi.us.es/cursos/xlib.html#toc2

testx11.prg
Code: Select all  Expand view
function Main()

   ? XOpenDisplay()

return nil

#pragma BEGINDUMP

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <hbapi.h>

HB_FUNC( XOPENDISPLAY )
{
   hb_retnll( ( HB_LONGLONG ) XOpenDisplay( hb_parc( 1 ) ) );
}

#pragma ENDDUMP


../bin/linux/gcc/hbmk2 testx11 -lX11
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Building Harbour gtxwc (libgtxwc.a)

Postby Antonio Linares » Mon Mar 18, 2019 12:19 am

X11.prg
Code: Select all  Expand view
function Main()

   ? XOpenDisplay()

return nil

#pragma BEGINDUMP

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <hbapi.h>

HB_FUNC( XOPENDISPLAY )
{
    Display *display; /* B */
    Window ventana;

    display = XOpenDisplay( NULL ); /* C */
    ventana = XCreateSimpleWindow(display, RootWindow( display, 0 ), /* D
*/

                50, 50, 500, 400, 2, 0, 1 );
    XMapWindow( display, ventana ); /* E */
    XFlush( display ); /* F */
    getchar(); /* G */
}

#pragma ENDDUMP
 


../bin/linux/gcc/hbmk2 x11 -lX11
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Building Harbour gtxwc (libgtxwc.a)

Postby Antonio Linares » Mon Mar 18, 2019 4:56 pm

X11 MsgInfo()

X11_msg.prg
Code: Select all  Expand view
function Main()

   MsgInfo( "Hello X11 world!" )

return nil

#pragma BEGINDUMP

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <hbapi.h>

typedef struct
{
    int x, y;
    unsigned int width, height;
    int textx, texty;
    int mouseover;
    int clicked;
    const char* text;
}
button;



static void draw_button( button* b, int fg, int bg,
                         Display* dpy, Window w, GC gc )
{
    if( b->mouseover )
    {
        XFillRectangle( dpy, w, gc, b->clicked+b->x, b->clicked+b->y,
                                    b->width, b->height );
        XSetForeground( dpy, gc, bg );
        XSetBackground( dpy, gc, fg );
    }
    else
    {
        XSetForeground( dpy, gc, fg );
        XSetBackground( dpy, gc, bg );
        XDrawRectangle( dpy, w, gc, b->x, b->y, b->width, b->height );
    }

    XDrawString( dpy, w, gc, b->clicked+b->textx, b->clicked+b->texty,
                 b->text, strlen(b->text) );
    XSetForeground( dpy, gc, fg );
    XSetBackground( dpy, gc, bg );
}

static int is_point_inside( button* b, int px, int py )
{
    return px>=b->x && px<=(b->x+(int)b->width-1) &&
           py>=b->y && py<=(b->y+(int)b->height-1);
}



/**************************************************************************
 * A "small" and "simple" function that creates a message box with an OK  
*
 * button, using ONLY Xlib.                                              
*
 * The function does not return until the user closes the message box,    
*
 * using the OK button, the escape key, or the close button what means    
*
 * that you can't do anything in the mean time(in the same thread).      
*
 * The code may look very ugly, because I pieced it together from        
*
 * tutorials and manuals and I use an awfull lot of magic values and      
*
 * unexplained calculations.                                              
*
 *                                                                        
*
 * title: The title of the message box.                                  
*
 * text:  The contents of the message box. Use '\n' as a line
terminator. *
 
**************************************************************************/

void MessageBoxX11( const char* title, const char* text )
{
    const char* wmDeleteWindow = "WM_DELETE_WINDOW";
    int black, white, height = 0, direction, ascent, descent, X, Y, W=0,
H;
    size_t i, lines = 0;
    char *atom;
    const char *end, *temp;
    button ok;
    Display* dpy;
    Window w;
    Atom wmDelete;
    GC gc;
    XFontStruct* font;
    XCharStruct overall;
    XSizeHints hints;
    XEvent e;

    /* Open a display */
    if( !(dpy = XOpenDisplay( 0 )) )
        return;

    /* Get us a white and black color */
    black = BlackPixel( dpy, DefaultScreen(dpy) );
    white = WhitePixel( dpy, DefaultScreen(dpy) );

    /* Create a window with the specified title */
    w = XCreateSimpleWindow( dpy, DefaultRootWindow(dpy), 0, 0, 100,
100,
                             0, black, 0xFFEBCD );

    XSelectInput( dpy, w, ExposureMask | StructureNotifyMask |
                          KeyReleaseMask | PointerMotionMask |
                          ButtonPressMask | ButtonReleaseMask );

    XMapWindow( dpy, w );
    XStoreName( dpy, w, title );

    wmDelete = XInternAtom( dpy, wmDeleteWindow, True );
    XSetWMProtocols( dpy, w, &wmDelete, 1 );

    /* Create a graphics context for the window */
    gc = XCreateGC( dpy, w, 0, 0 );

    XSetForeground( dpy, gc, black );
    XSetBackground( dpy, gc, white );

    /* Compute the printed width and height of the text */
    if( !(font = XQueryFont( dpy, XGContextFromGC(gc) )) )
        goto cleanup;

    for( temp=text; temp; temp = end ? (end+1) : NULL, ++lines )
    {
        end = strchr( temp, '\n' );

        XTextExtents( font, temp, end ? (unsigned
int)(end-temp):strlen(temp),
                      &direction, &ascent, &descent, &overall );

        W = overall.width>W ? overall.width : W;
        height = (ascent+descent)>height ? (ascent+descent) : height;
    }

    /* Compute the shape of the window and adjust the window accordingly
*/

    W += 160;
    H = lines*height + height + 80;
    X = DisplayWidth ( dpy, DefaultScreen(dpy) )/2 - W/2;
    Y = DisplayHeight( dpy, DefaultScreen(dpy) )/2 - H/2;

    XMoveResizeWindow( dpy, w, X, Y, W, H );

    /* Compute the shape of the OK button */
    XTextExtents( font, "OK", 2, &direction, &ascent, &descent, &overall
);

    ok.width = overall.width + 30;
    ok.height = ascent + descent + 5;
    ok.x = W/2 - ok.width/2;
    ok.y = H   - height - 15;
    ok.textx = ok.x + 15;
    ok.texty = ok.y + ok.height - 3;
    ok.mouseover = 0;
    ok.clicked = 0;
    ok.text = "OK";

    XFreeFontInfo( NULL, font, 1 ); /* We don't need that anymore */

    /* Make the window non resizeable */
    XUnmapWindow( dpy, w );

    hints.flags      = PSize | PMinSize | PMaxSize;
    hints.min_width  = hints.max_width  = hints.base_width  = W;
    hints.min_height = hints.max_height = hints.base_height = H;

    XSetWMNormalHints( dpy, w, &hints );
    XMapRaised( dpy, w );
    XFlush( dpy );

    /* Event loop */
    while( 1 )
    {
        XNextEvent( dpy, &e );
        ok.clicked = 0;

        if( e.type == MotionNotify )
        {
            if( is_point_inside( &ok, e.xmotion.x, e.xmotion.y ) )
            {
                if( !ok.mouseover )
                    e.type = Expose;

                ok.mouseover = 1;
            }
            else
            {
                if( ok.mouseover )
                    e.type = Expose;

                ok.mouseover = 0;
                ok.clicked = 0;
            }
        }

        switch( e.type )
        {
        case ButtonPress:
        case ButtonRelease:
            if( e.xbutton.button!=Button1 )
                break;

            if( ok.mouseover )
            {
                ok.clicked = e.type==ButtonPress ? 1 : 0;

                if( !ok.clicked )
                    goto cleanup;
            }
            else
            {
                ok.clicked = 0;
            }

        case Expose:
        case MapNotify:
            XClearWindow( dpy, w );

            /* Draw text lines */
            for( i=0, temp=text; temp; temp=end ? (end+1) : NULL,
i+=height )
            {
                end = strchr( temp, '\n' );

                XDrawString( dpy, w, gc, 10, 10+height+i, temp,
                             end ? (unsigned int)(end-temp) :
strlen(temp) );
            }

            /* Draw OK button */
            draw_button( &ok, black, white, dpy, w, gc );
            XFlush( dpy );
            break;

        case KeyRelease:
            if( XLookupKeysym( &e.xkey, 0 ) == XK_Escape )
                goto cleanup;
            break;

        case ClientMessage:
            atom = XGetAtomName( dpy, e.xclient.message_type );

            if( *atom == *wmDeleteWindow )
            {
                XFree( atom );
                goto cleanup;
            }

            XFree( atom );
            break;
        }
    }

cleanup:
    XFreeGC( dpy, gc );
    XDestroyWindow( dpy, w );
    XCloseDisplay( dpy );
}

HB_FUNC( MSGINFO )
{
   MessageBoxX11( "Information", hb_parc( 1 ) );
}

#pragma ENDDUMP
 


../bin/linux/gcc/hbmk2 x11_msg -lX11

Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Building Harbour gtxwc (libgtxwc.a)

Postby Antonio Linares » Fri Apr 05, 2019 1:00 pm

In order to test X11 you need to install this on termux:

pkg install libx11-dev

to build Harbour examples:
../bin/android/gcc/hbmk2 testx11 -lX11
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Building Harbour gtxwc (libgtxwc.a)

Postby sajawal » Thu Jul 20, 2023 10:09 am

In order to test X11 you need technology
to install this on termux:
sajawal
 
Posts: 1
Joined: Thu Jul 20, 2023 9:48 am


Return to FiveTouch

Who is online

Users browsing this forum: No registered users and 11 guests