This file is indexed.

/usr/include/ncbi-vdb/tui/tui.hpp is in libncbi-vdb-dev 2.8.1+dfsg-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
/*===========================================================================
*
*                            PUBLIC DOMAIN NOTICE
*               National Center for Biotechnology Information
*
*  This software/database is a "United States Government Work" under the
*  terms of the United States Copyright Act.  It was written as part of
*  the author's official duties as a United States Government employee and
*  thus cannot be copyrighted.  This software/database is freely available
*  to the public for use. The National Library of Medicine and the U.S.
*  Government have not placed any restriction on its use or reproduction.
*
*  Although all reasonable efforts have been taken to ensure the accuracy
*  and reliability of the software and data, the NLM and the U.S.
*  Government do not and cannot warrant the performance or results that
*  may be obtained by using this software or data. The NLM and the U.S.
*  Government disclaim all warranties, express or implied, including
*  warranties of performance, merchantability or fitness for any particular
*  purpose.
*
*  Please cite the author in any work or product based on this material.
*
* ===========================================================================
*
*/

#ifndef _hpp_tui_
#define _hpp_tui_

#ifndef _h_tui_
#include <tui/tui.h>
#endif

#ifndef _h_tui_dlg_
#include <tui/tui_dlg.h>
#endif

#ifndef _h_klib_printf_
#include <klib/printf.h>
#endif

#include <string>
#include <cstring>

namespace tui {

typedef int tui_coord;
typedef int tui_id;
typedef long long int tui_long;

class Tui;  // forward decl because of beeing friend with Point, Rect and Ac 
class Dlg;
class Std_Dlg_Base;  
class Std_Dlg_Pick;
class Std_Dlg_File_Pick;
class Std_Dlg_Dir_Pick;
class Dlg_Runner;

class Tui_Point
{
    private :
        tui_point p_;     // open struct from interfaces/tui/tui.h

    public :
        Tui_Point( const tui_coord x, const tui_coord y ) { set( x, y ); }; // ctor from 2 coordinates
        Tui_Point( const Tui_Point &other ) { set( other.get_x(), other.get_y() ); };      // copy-ctor

        Tui_Point & operator= ( const Tui_Point & other )  // assignment operator
            { if ( this != &other ) set( other.get_x(), other.get_y() ); return *this; }

        const tui_coord get_x( void ) const { return p_.x; };
        const tui_coord get_y( void ) const { return p_.y; };
        void set_x( const tui_coord x ) { p_.x = x; };
        void set_y( const tui_coord y ) { p_.y = y; };
        void set( const tui_coord x, const tui_coord y ) { p_.x = x; p_.y = y; };

        friend class Tui;   // so the Tui-class can access the private struct of this class
};


class Tui_Rect
{
    private :
        tui_rect r_;     // open struct from interfaces/tui/tui.h

    public :
        Tui_Rect( const tui_coord x, const tui_coord y, const tui_coord w, const tui_coord h ) { set( x, y, w, h ); };
        Tui_Rect( void ) { set( 0, 0, 1, 1 ); };
        Tui_Rect( const Tui_Rect &other ) { set( other ); };      // copy-ctor

        Tui_Rect & operator= ( const Tui_Rect & other )  // assignment operator
            { if ( this != &other ) set( other ); return *this; }

        const tui_coord get_x( void ) const { return r_.top_left.x; };
        const tui_coord get_y( void ) const { return r_.top_left.y; };
        const tui_coord get_w( void ) const { return r_.w; };
        const tui_coord get_h( void ) const { return r_.h; };
        void get( tui_coord &x, tui_coord &y, tui_coord &w, tui_coord &h ) const
        { x = r_.top_left.x; y = r_.top_left.y; w = r_.w; h = r_.h; }

        void set_x( const tui_coord x ) { r_.top_left.x = x; };
        void set_y( const tui_coord y ) { r_.top_left.y = y; };
        void set_w( const tui_coord w ) { r_.w = w; };
        void set_h( const tui_coord h ) { r_.h = h; };
        void set( const tui_coord x, const tui_coord y, const tui_coord w, const tui_coord h )
            { r_.top_left.x = x; r_.top_left.y = y; r_.w = w; r_.h = h; };
        void set( Tui_Rect const &other )
            { r_.top_left.x = other.r_.top_left.x; r_.top_left.y = other.r_.top_left.y; r_.w = other.r_.w; r_.h = other.r_.h; };
        void change( const tui_coord dx, const tui_coord dy, const tui_coord dw, const tui_coord dh )
            { r_.top_left.x += dx; r_.top_left.y += dy, r_.w += dw, r_.h += dh; };

        friend class Tui;   // so the Tui-class can access the private struct of this class
        friend class Dlg;
        friend class Std_Dlg_Pick;
        friend class Std_Dlg_File_Pick;
        friend class Std_Dlg_Dir_Pick;
};

class Tui_Ac
{
    private :
        tui_ac ac_;     // open struct from interfaces/tui/tui.h

    public :
        Tui_Ac( const KTUI_attrib attr, const KTUI_color fg, const KTUI_color bg ) { set( attr, fg, bg ); };
        Tui_Ac( const Tui_Ac &other ) { set( other ); };      // copy-ctor

        Tui_Ac & operator= ( const Tui_Ac & other )  // assignment operator
            { if ( this != &other ) set( other ); return *this; }

        const KTUI_attrib get_attrib( void ) const { return ac_.attr; };
        const KTUI_color get_fg( void ) const { return ac_.fg; };
        const KTUI_color get_bg( void ) const { return ac_.bg; };
        void set_attrib( const KTUI_attrib attr ) { ac_.attr = attr; };
        void set_fg( const KTUI_color fg ) { ac_.fg = fg; };
        void set_bg( const KTUI_color bg ) { ac_.bg = bg; };
        void set( const KTUI_attrib attr, const KTUI_color fg, const KTUI_color bg ) { ac_.attr = attr; ac_.fg = fg; ac_.bg = bg; };
        void set( const Tui_Ac &other ) { ac_.attr = other.ac_.attr; ac_.fg = other.ac_.fg; ac_.bg = other.ac_.bg; };

        friend class Tui;   // so the Tui-class can access the private struct of this class
};


class Tui_Event
{
    private :
        tui_event ev_;     // open struct from interfaces/tui/tui.h

    public :
        Tui_Event( void ) { ev_.event_type = ktui_event_none; };

        bool get_from_tui( void );

        KTUI_event_type get_type( void ) const { return ev_.event_type; };

        KTUI_key get_key_type( void ) const { return ev_.data.kb_data.code; };
        int get_key( void ) const { return ev_.data.kb_data.key; };

        tui_coord get_mouse_x( void ) const { return ev_.data.mouse_data.x; };
        tui_coord get_mouse_y( void ) const { return ev_.data.mouse_data.y; };
        KTUI_mouse_button get_mouse_button( void ) const { return ev_.data.mouse_data.button; };

        tui_coord get_window_width( void ) const { return ev_.data.win_data.w; };
        tui_coord get_window_height( void ) const { return ev_.data.win_data.h; };

        bool empty( void ) const { return ( get_type() == ktui_event_none ); };

        friend class Tui;   // so the Tui-class can access the private struct of this class
        friend class Dlg;
};


class Tui
{
    private :
        struct KTUI * tui_;    // opaque struct from interfaces/tui/tui.h
        static Tui * instance;

        Tui( const int timeout = 10000 ) { KTUIMake ( NULL, &tui_, timeout ); };    // private constructor
        Tui( const Tui & );     // prevent copy construction
        Tui& operator=( const Tui& );   // prevent assignment
        ~Tui( void ) { KTUIRelease ( tui_ ); };

    public :
        static Tui * getInstance( void );
        static void clean_up( void );

        bool SetTimeout( const int timeout ) { return ( KTUISetTimeout ( tui_, timeout ) == 0 ); };

        bool Print ( const Tui_Point &p, const Tui_Ac &ac, const std::string &s, const int l = 0 )
            { return ( KTUIPrint( tui_, &( p.p_ ), &( ac.ac_ ), s.c_str(), ( l == 0 ) ? (int)s.length() : l ) == 0 ); };

        bool PaintRect( const Tui_Rect &r, const Tui_Ac &ac, const char c = ' ' )
            { return ( KTUIRect( tui_, &( r.r_ ), &( ac.ac_ ), c ) == 0 ); }

        bool Flush( bool forced = false ) { return ( KTUIFlush ( tui_, forced ) == 0 ); };

        bool GetExtent ( tui_coord * cols, tui_coord * lines ) const { return ( KTUIGetExtent ( tui_, cols, lines ) == 0 ); };
        bool GetExtent ( Tui_Rect &r )
        {
            tui_coord cols, lines;
            bool res = ( KTUIGetExtent ( tui_, &cols, &lines ) == 0 );
            if ( res ) r.set( 0, 0, cols, lines );
            return res;
        }

        bool ClrScr( const KTUI_color bg ) { return ( KTUIClrScr( tui_, bg ) == 0 ); };

        friend class Tui_Event;
        friend class Dlg;
        friend class Std_Dlg_Base;
};


class Tui_Dlg_Event
{
    private :
        tuidlg_event ev_;     // open struct from interfaces/tui/tui_dlg.h

    public :
        Tui_Dlg_Event( void ) { ev_.event_type = ktuidlg_event_none; };

        const KTUIDlg_event_type get_type( void ) const { return ev_.event_type; };
        const tui_id get_widget_id( void ) const { return ev_.widget_id; };
        const tui_long get_value_1( void ) const { return ev_.value_1; };
        const tui_long get_value_2( void ) const { return ev_.value_2; };
        const void * get_ptr_value( void ) const { return ev_.ptr_0; };
        const bool empty( void ) const { return ( ev_.event_type == ktuidlg_event_none ); };

        friend class Dlg_Runner;
};


class Tui_Menu
{
    private :
        struct KTUI_Menu * menu_;

    public :
        Tui_Menu( void ) { KTUI_Menu_Make ( &menu_ ); };
        ~Tui_Menu( void ) { KTUI_Menu_Release ( menu_ ); };

        bool Add( const char * path, tui_id id, char shortcut ) { return ( KTUI_Menu_Add ( menu_, path, id, shortcut ) == 0 ); }
        bool Remove( tui_id id ) { return ( KTUI_Menu_Remove ( menu_, id ) == 0 ); };

        struct KTUI_Menu * get( bool inc_ref_count )
        {
            if ( inc_ref_count )
            {
                if ( KTUI_Menu_AddRef ( menu_ ) == 0 ) return menu_; else return NULL;
            }
            else
                return menu_;
        };
};


class Grid
{
    private :
        TUIWGrid_data grid_data_;
        char buffer[ 1024 ];

        static void static_str_cb( TUIWGridStr what, uint64_t col, uint64_t row,
                                   uint32_t col_width, const char ** value, void * data, void * instance )
        {
            Grid *g = static_cast< Grid* >( instance );
            g->buffer[ 0 ] = 0;
            switch( what )
            {
                case kGrid_Col   : g->Col_Hdr_Request( col, col_width, data, g->buffer, sizeof g->buffer ); break; 
                case kGrid_Row   : g->Row_Hdr_Request( row, col_width, data, g->buffer, sizeof g->buffer ); break; 
                case kGrid_Cell  : g->Cell_Request( col, row, col_width, data, g->buffer, sizeof g->buffer ); break;
            }
            *value = g->buffer;
        };

        static void static_int_cb( TUIWGridInt what, uint64_t col, uint32_t widget_width,
                                   uint64_t * value, void * data, void * instance )
        {
            Grid *g = static_cast< Grid* >( instance );
            switch( what )
            {
                case kGrid_Get_Width    : *value = g->Get_Col_Width( col, widget_width, data ); break;
                case kGrid_Set_Width    : g->Set_Col_Width( col, widget_width, data, *value ); break;
                case kGrid_Get_ColCount : *value = g->Get_Col_Count( widget_width, data ); break;
                case kGrid_Get_RowCount : *value = g->Get_Row_Count( widget_width, data ); break;
                case kGrid_Prepare_Page : g->Prepare_Page( col, widget_width, data ); break;
                case kGrid_Next_Row     : g->Next_Row( col, data ); break;
                default : *value = 0;
            }
        };

    public :
        Grid( void * data );
        virtual ~Grid() {};

        void show_header( bool show ) { grid_data_.show_header = show; };
        void show_row_header( int width ) { grid_data_.row_hdr_width = width; grid_data_.show_row_header = ( width > 0 ); };
        void show_h_scroll( bool show ) { grid_data_.show_h_scroll = show; };
        void show_v_scroll( bool show ) { grid_data_.show_v_scroll = show; };

        TUIWGrid_data * get_ptr( void ) { return &grid_data_; };

        /* overwrite these in derived classes */
        virtual void Col_Hdr_Request( tui_long col, uint32_t col_width, void * data, char * buffer, size_t buffer_size )
            { string_printf ( buffer, buffer_size, NULL, "C %lu", col+1 ); };

        virtual void Row_Hdr_Request( tui_long row, uint32_t col_width, void * data, char * buffer, size_t buffer_size )
            { string_printf ( buffer, buffer_size, NULL, "R %lu", row+1 ); };

        virtual void Cell_Request( tui_long col, tui_long row, uint32_t col_width, void * data, char * buffer, size_t buffer_size )
            { string_printf ( buffer, buffer_size, NULL, "Z %lu-%lu", col + 1, row + 1 ); };

        virtual tui_long Get_Col_Width( tui_long col, uint32_t widget_width, void * data ) { return 12; };
        virtual void Set_Col_Width( tui_long col, uint32_t widget_width, void * data, tui_long value ) {};
        virtual tui_long Get_Col_Count( uint32_t widget_width, void * data ) { return 8; };
        virtual tui_long Get_Row_Count( uint32_t widget_width, void * data ) { return 32; };
        virtual void Prepare_Page( uint64_t row, uint32_t row_count, void * data ) { ; };
        virtual void Next_Row( uint64_t row, void * data ) { ; };
};


class Dlg
{
    private :
        struct KTUIDlg * dlg_;  // opaque struct from interfaces/tui/tui_dlg.h

    public :
        Dlg( void )
        {
            Tui * instance = Tui::getInstance();
            KTUIDlgMake ( instance->tui_, &dlg_, /*parent*/ NULL, /*palette*/ NULL, /*rect*/ NULL );
        };

        ~Dlg( void ) { KTUIDlgRelease ( dlg_ ); };

        bool SetCaption( const char * s ) { return ( KTUIDlgSetCaption ( dlg_, s ) == 0 ); };
        bool SetCaption( std::string &s ) { return ( KTUIDlgSetCaption ( dlg_, s.c_str() ) == 0 ); };
        bool SetCaptionF( const char * fmt, ... );

        Tui_Rect center( uint32_t x_margin, uint32_t y_margin )
        {
            Tui_Rect r;
            GetRect( r );
            r.set_w( r.get_w() - ( 2 * x_margin ) );
            r.set_x( r.get_x() + x_margin );
            r.set_h( r.get_h() - ( 2 * y_margin ) );
            r.set_y( r.get_y() + y_margin );
            return r;
        };

        void center( Tui_Rect &r )
        {
            Tui_Rect rd;
            GetRect( rd );
            if ( r.get_w() > ( rd.get_w() - 2 ) ) r.set_w( rd.get_w() - 2 );
            if ( r.get_h() > ( rd.get_h() -2 ) ) r.set_h( rd.get_h() - 2 );
            r.set_x( rd.get_x() + ( ( rd.get_w() - r.get_w() ) / 2 ) );
            r.set_y( rd.get_y() + ( ( rd.get_h() - r.get_h() ) / 2 ) );
        };


        void SetData( void * data ) { KTUIDlgSetData ( dlg_, data ); };
        void * GetData( void ) { return KTUIDlgGetData ( dlg_ ); };

        void SetDone( bool done ) { KTUIDlgSetDone ( dlg_, done ); };
        bool IsDone( void ) { return KTUIDlgGetDone ( dlg_ ); };

        void SetChanged( void ) { KTUIDlgSetChanged ( dlg_ ); };
        void ClearChanged( void ) { KTUIDlgClearChanged ( dlg_ ); };
        bool IsChanged( void ) { return KTUIDlgGetChanged ( dlg_ ); };

        bool GetRect( Tui_Rect &r ) { return ( KTUIDlgGetRect ( dlg_, &( r.r_ ) ) == 0 ); };
        bool SetRect( Tui_Rect const &r, bool redraw ) { return ( KTUIDlgSetRect ( dlg_, &( r.r_ ), redraw ) == 0 ); };
        virtual bool Resize( Tui_Rect const &r );

        bool IsMenuActive( void ) { return KTUIDlgGetMenuActive ( dlg_ ); };
        bool SetMenuActive( bool active ) { return ( KTUIDlgSetMenuActive ( dlg_, active ) == 0 ); };
        bool SetMenu( Tui_Menu &menu ) { return ( KTUIDlgSetMenu ( dlg_, menu.get( true ) ) == 0 ); };
        bool ToggleMenu( void ) { return SetMenuActive( !IsMenuActive() ); };

        bool SetWidgetCaption( tui_id id, const char * caption ) { return ( KTUIDlgSetWidgetCaption ( dlg_, id, caption ) == 0 ); };
        bool SetWidgetCaption( tui_id id, std::string caption ) { return ( KTUIDlgSetWidgetCaption ( dlg_, id, caption.c_str() ) == 0 ); };
        bool SetWidgetCaptionF( tui_id id, const char * fmt, ... );
        bool GetWidgetRect( tui_id id, Tui_Rect &r ) { return ( KTUIDlgGetWidgetRect ( dlg_, id, &( r.r_ ) ) == 0 ); };
        bool SetWidgetRect( tui_id id, Tui_Rect const &r, bool redraw ) { return ( KTUIDlgSetWidgetRect ( dlg_, id, &( r.r_ ), redraw ) == 0 ); };

        bool SetWidgetCanFocus( tui_id id, bool can_focus ) { return ( KTUIDlgSetWidgetCanFocus ( dlg_, id, can_focus ) == 0 ); };

        bool IsWidgetVisisble( tui_id id ) { return KTUIDlgGetWidgetVisible ( dlg_, id ); };
        bool SetWidgetVisible( tui_id id, bool visible ) { return ( KTUIDlgSetWidgetVisible ( dlg_, id, visible ) == 0 ); };

        bool HasWidgetChanged( tui_id id ) { return KTUIDlgGetWidgetChanged ( dlg_, id ); };
        bool SetWidgetChanged( tui_id id, bool changed ) { return ( KTUIDlgSetWidgetChanged ( dlg_, id, changed ) == 0 ); };

        bool GetWidgetBoolValue( tui_id id ) { return KTUIDlgGetWidgetBoolValue ( dlg_, id ); };
        bool SetWidgetBoolValue( tui_id id, bool value ) { return ( KTUIDlgSetWidgetBoolValue ( dlg_, id, value ) == 0 ); };

        bool SetWidgetBackground( tui_id id, KTUI_color value ) { return ( KTUIDlgSetWidgetBg ( dlg_, id, value ) == 0 ); };
        bool ReleaseWidgetBackground( tui_id id ) { return ( KTUIDlgReleaseWidgetBg ( dlg_, id ) == 0 ); };

		bool SetWidgetForeground( tui_id id, KTUI_color value ) { return ( KTUIDlgSetWidgetFg ( dlg_, id, value ) == 0 ); };
        bool ReleaseWidgetForeground( tui_id id ) { return ( KTUIDlgReleaseWidgetFg ( dlg_, id ) == 0 ); };

        tui_long GetWidgetInt64Value( tui_id id ) { return KTUIDlgGetWidgetInt64Value ( dlg_, id ); };
        bool SetWidgetInt64Value( tui_id id, tui_long value ) { return ( KTUIDlgSetWidgetInt64Value ( dlg_, id, value ) == 0 ); };

        tui_long GetWidgetInt64Min( tui_id id ) { return KTUIDlgGetWidgetInt64Min ( dlg_, id ); };
        bool SetWidgetInt64Min( tui_id id, tui_long value ) { return ( KTUIDlgSetWidgetInt64Min ( dlg_, id, value ) == 0 ); };

        tui_long GetWidgetInt64Max( tui_id id ) { return KTUIDlgGetWidgetInt64Max ( dlg_, id ); };
        bool SetWidgetInt64Max( tui_id id, tui_long value ) { return ( KTUIDlgSetWidgetInt64Max ( dlg_, id, value ) == 0 ); };

        int GetWidgetPercent( tui_id id ) { return KTUIDlgGetWidgetPercent ( dlg_, id ); };
        bool SetWidgetPercent( tui_id id, int value ) { return ( KTUIDlgSetWidgetPercent ( dlg_, id, value ) == 0 ); };

        int GetWidgetPrecision( tui_id id ) { return KTUIDlgGetWidgetPrecision ( dlg_, id ); };
        bool SetWidgetPrecision( tui_id id, int value ) { return ( KTUIDlgSetWidgetPrecision( dlg_, id, value ) == 0 ); };
        int CalcPercent( tui_long value, tui_long max, int precision ) { return KTUIDlgCalcPercent ( value, max, precision ); };

        const char * GetWidgetText( tui_id id ) { return KTUIDlgGetWidgetText( dlg_, id ); };
        std::string GetWidgetString( tui_id id ) { return std::string( KTUIDlgGetWidgetText( dlg_, id ) ); };
        bool SetWidgetText( tui_id id, const char * value ) { return ( KTUIDlgSetWidgetText ( dlg_, id, value ) == 0 ); };
        bool SetWidgetText( tui_id id, std::string &s ) { return ( KTUIDlgSetWidgetText ( dlg_, id, s.c_str() ) == 0 ); };
        bool SetWidgetTextF( tui_id id, const char * fmt, ... );
        size_t GetWidgetTextLength( tui_id id ) { return KTUIDlgGetWidgetTextLength( dlg_, id ); };
        bool SetWidgetTextLength( tui_id id, size_t value ) { return ( KTUIDlgSetWidgetTextLength ( dlg_, id, value ) == 0 ); };

        bool AddWidgetString( tui_id id, const char * txt ) { return ( KTUIDlgAddWidgetString ( dlg_, id, txt ) == 0 ); };
        bool AddWidgetString( tui_id id, std::string &s ) { return ( KTUIDlgAddWidgetString ( dlg_, id, s.c_str() ) == 0 ); };
        bool AddWidgetStringN( tui_id id, int n, ... );
        bool AddWidgetStringF( tui_id id, const char * fmt, ... );
        bool AddWidgetStrings( tui_id id, VNamelist * src ) { return ( KTUIDlgAddWidgetStrings ( dlg_, id, src ) == 0 ); };
        const char * GetWidgetStringByIdx( tui_id id, tui_id idx ) { return KTUIDlgGetWidgetStringByIdx ( dlg_, id, idx ); };
        bool RemoveWidgetStringByIdx( tui_id id, tui_id idx ) { return ( KTUIDlgRemoveWidgetStringByIdx ( dlg_, id, idx ) == 0 ); };
        bool RemoveAllWidgetStrings( tui_id id ) { return ( KTUIDlgRemoveAllWidgetStrings ( dlg_, id ) == 0 ); };
        tui_id GetWidgetStringCount( tui_id id ) { return KTUIDlgGetWidgetStringCount ( dlg_, id ); };
        tui_id HasWidgetString( tui_id id, const char * txt ) { return KTUIDlgHasWidgetString( dlg_, id, txt ); };
        tui_id HasWidgetString( tui_id id, std::string &txt ) { return KTUIDlgHasWidgetString( dlg_, id, txt.c_str() ); };
        tui_id GetWidgetSelectedString( tui_id id ) { return KTUIDlgGetWidgetSelectedString( dlg_, id ); };
        bool SetWidgetSelectedString( tui_id id, tui_id idx ) { return ( KTUIDlgSetWidgetSelectedString ( dlg_, id, idx ) == 0 ); };

        bool AddLabel( tui_id id, Tui_Rect const &r, const char * s ) { return ( KTUIDlgAddLabel( dlg_, id, &( r.r_ ), s ) == 0 ); };
        bool AddButton( tui_id id, Tui_Rect const &r, const char * s ) { return ( KTUIDlgAddBtn ( dlg_, id, &( r.r_ ), s ) == 0 ); };

        bool AddCheckBox( tui_id id, Tui_Rect const &r, const char * s, bool enabled )
        {
            bool res = ( KTUIDlgAddCheckBox ( dlg_, id, &( r.r_ ), s ) == 0 );
            if ( res ) res = SetWidgetBoolValue( id, enabled );
            return res;
        };

        bool AddInput( tui_id id, Tui_Rect const &r, const char * s, size_t length ) { return ( KTUIDlgAddInput ( dlg_, id, &( r.r_ ), s, length ) == 0 ); };
        bool AddRadioBox( tui_id id, Tui_Rect const &r ) { return ( KTUIDlgAddRadioBox ( dlg_, id, &( r.r_ ) ) == 0 ); };
        bool AddList( tui_id id, Tui_Rect const &r ) { return ( KTUIDlgAddList ( dlg_, id, &( r.r_ ) ) == 0 ); };
        bool SetHScroll( tui_id id, bool enabled ) { return ( KTUIDlgSetHScroll ( dlg_, id, enabled ) == 0 ); };
        bool AddProgress( tui_id id, Tui_Rect const &r, int percent, int precision ) { return ( KTUIDlgAddProgress ( dlg_, id, &( r.r_ ), percent, precision ) == 0 ); };
        bool AddSpinEdit( tui_id id, Tui_Rect const &r, tui_long value, tui_long min, tui_long max ) { return ( KTUIDlgAddSpinEdit ( dlg_, id, &( r.r_ ), value, min, max ) == 0 ); };
        bool AddGrid( tui_id id, Tui_Rect const &r, Grid &grid, bool cached ) { return( KTUIDlgAddGrid ( dlg_, id, &( r.r_ ), grid.get_ptr(), cached ) == 0 ); };

        bool HasWidget( tui_id id ) { return KTUIDlgHasWidget ( dlg_, id ); };

        tui_long GetGridCol( tui_id id ) { uint64_t col = 0; KTUIDlgGetGridCol( dlg_, id, &col ); return col; };
        bool SetGridCol( tui_id id, tui_long col ) { return ( KTUIDlgSetGridCol( dlg_, id, col ) == 0 ); };
        tui_long GetGridRow( tui_id id ) { uint64_t row = 0; KTUIDlgGetGridRow( dlg_, id, &row ); return row; };
        bool SetGridRow( tui_id id, tui_long row ) { return ( KTUIDlgSetGridRow( dlg_, id, row ) == 0 ); };

        bool RemoveWidget( tui_id id ) { return ( KTUIDlgRemove ( dlg_, id ) == 0 ); };
        bool Draw( bool forced = false ) { return ( KTUIDlgDraw( dlg_, forced ) == 0 ); };
        bool DrawWidget( tui_id id ) { return ( KTUIDlgDrawWidget( dlg_, id ) == 0 ); };
        bool DrawCaption( void ) { return ( KTUIDlgDrawCaption( dlg_ ) == 0 ); };

        bool SetFocus( tui_id id ) { return ( KTUIDlgSetFocus( dlg_, id ) == 0 ); };
        bool MoveFocus( bool forward ) { return ( KTUIDlgMoveFocus( dlg_, forward ) == 0 ); };
        bool FocusValid( void ) { return KTUIDlgFocusValid( dlg_ ); };
        tui_id GetFocusId( void ) { return KTUIDlgGetFocusId( dlg_ ); };

        bool HandleEvent( Tui_Event &ev ) { return ( KTUIDlgHandleEvent( dlg_, &( ev.ev_ ) ) == 0 ); };
        bool GetDlgEvent( tuidlg_event * event ) { return ( KTUIDlgGet ( dlg_, event ) == 0 ); };

        friend class Std_Dlg_Base;
};

class Dlg_Runner
{
    private :
        Dlg &dlg_;
        void * data_;

        bool handle_dlg_event_loop( void );
        bool handle_tui_event( Tui_Event &ev );
        bool handle_dlg_event( Tui_Event &ev );


    public :
        Dlg_Runner( Dlg &dlg, void * data ) : dlg_( dlg ), data_( data ) { };
        virtual ~Dlg_Runner() {};

        void run( void );

        virtual bool on_kb_alpha( Dlg &dlg, void * data, int code )               { return false; };
        virtual bool on_kb_special_key( Dlg &dlg, void * data, KTUI_key key )     { return false; };
        virtual bool on_mouse( Dlg &dlg, void * data, tui_coord x, tui_coord y, KTUI_mouse_button button ) { return false; };
        virtual bool on_win( Dlg &dlg, void * data, tui_coord w, tui_coord h )    { return dlg_.Resize( tui::Tui_Rect( 0, 0, w, h ) ); };
        virtual bool on_focus( Dlg &dlg, void * data, Tui_Dlg_Event &dev )        { return false; };
        virtual bool on_focus_lost( Dlg &dlg, void * data, Tui_Dlg_Event &dev )   { return false; };
        virtual bool on_select( Dlg &dlg, void * data, Tui_Dlg_Event &dev )       { return false; };
        virtual bool on_changed( Dlg &dlg, void * data, Tui_Dlg_Event &dev )      { return false; };
        virtual bool on_menu( Dlg &dlg, void * data, Tui_Dlg_Event &dev )         { return false; };
};


class Std_Dlg_Base
{
    protected :
        Dlg * parent_;
        KTUI_color bg1_, bg2_;
        bool allow_dir_create_;
        Tui_Rect R_;
        char buffer[ 1024 ];
        char caption[ 256 ];

        void prepare( struct KTUI ** tui, struct KTUIDlg ** parent_dlg )
        {
            *tui = NULL;
            *parent_dlg = NULL;
            if ( parent_ != NULL )
                *parent_dlg = parent_->dlg_;
            else
            {
                Tui * instance = Tui::getInstance();
                *tui = instance->tui_;
            }
        }

        void post_process( void )
        {
            if ( parent_ != NULL )
                parent_->Draw();
        }

    public :
        Std_Dlg_Base( void ) : parent_( NULL ), bg1_( KTUI_c_brown ), bg2_( KTUI_c_dark_green ),
                               allow_dir_create_( false ), R_( 0, 0, 35, 1 )
        {
			buffer[ 0 ] = 0;
			caption[ 0 ] = 0;
		};

        void set_parent( Dlg * parent ) { parent_ = parent; };
        void set_location( Tui_Rect const &r ) { R_.set( r ); };
        void set_colors( const KTUI_color c1, const KTUI_color c2 ) { bg1_ = c1; bg2_ = c2; };
        void set_color1( const KTUI_color c ) { bg1_ = c; };
        void set_color2( const KTUI_color c ) { bg2_ = c; };
        void allow_dir_create() { allow_dir_create_ = true; };

        void set_caption( const char * txt ) { if ( txt != NULL ) string_printf ( caption, sizeof caption, NULL, "%s", txt ); };
        void set_caption2( const std::string &txt ) { set_caption( txt.c_str() ); };

        void set_text( const char * txt ) { if ( txt != NULL ) string_printf ( buffer, sizeof buffer, NULL, "%s", txt ); };
        void set_text2( std::string &txt ) { set_text( txt.c_str() ); };
        const char * get_text( void ) { return buffer; };
        std::string get_text2( void ) { return buffer; };

        Tui_Rect center( void )
        {
            tui_coord w = R_.get_w();
            tui_coord cols, lines;
            Tui::getInstance()->GetExtent( &cols, &lines );
            return Tui_Rect( ( cols / 2 ) - ( w / 2 ), ( lines / 2 ) - 3, w, 1 );
        };
};


class Std_Dlg_Info_Line : public Std_Dlg_Base
{
    private :

        bool execute_int( void )
        {
            struct KTUI * tui = NULL;
            struct KTUIDlg * parent_dlg = NULL;
            prepare( &tui, &parent_dlg ); /* get either tui-ptr or parent_dlg-ptr for calling actual dlg-function */

            rc_t rc = TUI_ShowMessage ( tui, parent_dlg, caption, buffer, 
                                        R_.get_x(), R_.get_y(), R_.get_w(), bg1_, bg2_ );

            post_process(); /* draw the parent */
            return ( rc == 0 );
        }

    public :
        bool execute( void ) { return execute_int(); };
};


class Std_Dlg_Input : public Std_Dlg_Base
{
    private :

        bool execute_int( void )
        {
            struct KTUI * tui = NULL;
            struct KTUIDlg * parent_dlg = NULL;
            prepare( &tui, &parent_dlg ); /* get either tui-ptr or parent_dlg-ptr for calling actual dlg-function */

            bool selected;

            rc_t rc = TUI_EditBuffer( tui, parent_dlg, caption, buffer, sizeof buffer,
                                      R_.get_x(), R_.get_y(), R_.get_w(),
                                      &selected, bg1_, bg2_ );

            post_process(); /* draw the parent */
            return ( rc == 0 && selected );
        }

    public :
        bool execute( void ) { return execute_int(); };
};


class Std_Dlg_Question : public Std_Dlg_Base
{
    private :

        bool execute_int( void )
        {
            struct KTUI * tui = NULL;
            struct KTUIDlg * parent_dlg = NULL;
            prepare( &tui, &parent_dlg ); /* get either tui-ptr or parent_dlg-ptr for calling actual dlg-function */

            bool yes;

            rc_t rc = TUI_YesNoDlg ( tui, parent_dlg, caption, buffer,
                                     R_.get_x(), R_.get_y(), R_.get_w(), &yes, bg1_, bg2_ );

            post_process(); /* draw the parent */
            return ( rc == 0 && yes );
        }

    public :

        bool execute( void ) { return execute_int(); };
};


class Std_Dlg_Pick : public Std_Dlg_Base
{
    private :
        VNamelist * list_;

        bool execute_int( unsigned int * selection )
        {
            struct KTUI * tui = NULL;
            struct KTUIDlg * parent_dlg = NULL;
            prepare( &tui, &parent_dlg ); /* get either tui-ptr or parent_dlg-ptr for calling actual dlg-function */

            bool selected;
            if ( R_.get_h() < 6 ) R_.set_h( 6 );

            rc_t rc = TUI_PickFromList( tui, parent_dlg, caption, list_, selection,
                                        &( R_.r_ ), &selected, bg1_, bg2_ );

            post_process(); /* draw the parent */
            return ( rc == 0 && selected );
        }

    public :
        Std_Dlg_Pick( void ) { VNamelistMake ( &list_, 100 ); };
        virtual ~Std_Dlg_Pick( void ) { VNamelistRelease( list_ ); };

        void add_entry( const char * txt ) { VNamelistAppend ( list_, txt ); };
        bool execute( unsigned int * selection ) { return execute_int( selection ); };
};


class Std_Dlg_File_Pick : public Std_Dlg_Base
{
    private :
        char ext[ 32 ];
        uint32_t dir_h;

        bool execute_int( void )
        {
            struct KTUI * tui = NULL;
            struct KTUIDlg * parent_dlg = NULL;
            prepare( &tui, &parent_dlg ); /* get either tui-ptr or parent_dlg-ptr for calling actual dlg-function */

            bool done;
            if ( R_.get_h() < 12 ) R_.set_h( 12 );
            if ( dir_h == 0 ) dir_h = ( R_.get_h() - 6 ) / 2 ;

            rc_t rc = FileDlg ( tui, parent_dlg, buffer, sizeof buffer, ext, &done,
                                &( R_.r_ ), dir_h, bg1_, bg2_ );

            post_process(); /* draw the parent */
            return ( rc == 0 && done );
        }

    public :
        Std_Dlg_File_Pick( void ) { ext[ 0 ] = 0; dir_h = 0; };

        void set_ext( const char * txt ) { if ( txt != NULL ) string_printf ( ext, sizeof ext, NULL, "%s", txt ); };
        void set_ext2( const std::string &txt ) { set_ext( txt.c_str() ); };
        void set_dir_h( uint32_t value ) { dir_h = value; };

        bool execute( void ) { return execute_int(); };
};


class Std_Dlg_Dir_Pick : public Std_Dlg_Base
{
    private :
        bool execute_int( void )
        {
            struct KTUI * tui = NULL;
            struct KTUIDlg * parent_dlg = NULL;
            prepare( &tui, &parent_dlg ); /* get either tui-ptr or parent_dlg-ptr for calling actual dlg-function */

            bool done;
            if ( R_.get_h() < 12 ) R_.set_h( 12 );

            rc_t rc = DirDlg ( tui, parent_dlg, buffer, sizeof buffer, &done,
                               &( R_.r_ ), bg1_, bg2_, allow_dir_create_ );

            post_process(); /* draw the parent */
            return ( rc == 0 && done );
        }

    public :
        Std_Dlg_Dir_Pick( void ) { };
        bool execute( void ) { return execute_int(); };
};


} // namespace tui

#endif // _hpp_tui_