!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/X11R6/include/Xm/   drwxr-xr-x
Free 318.32 GB of 458.09 GB (69.49%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     IconGP.h (5.02 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/**
 *
 * $Id: IconGP.h,v 1.9 2001/12/26 07:00:40 dannybackx Exp $
 * 
 * Copyright (C) 1995 Free Software Foundation, Inc.
 * Copyright (C) 1997-2001 LessTif Development Team
 *
 * This file is part of the GNU LessTif Library.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 **/

#ifndef _XM_ICONGP_H
#define _XM_ICONGP_H

#include <Xm/IconG.h>
#include <Xm/GadgetP.h>
#include <Xm/ExtObjectP.h>

#ifdef __cplusplus
extern "C" {
#endif

/*
 * Gadget cache class and instance records
 */
typedef struct _XmIconGCacheObjClassPart {
    XtPointer extension;
} XmIconGCacheObjClassPart;

typedef struct _XmIconGCacheObjClassRec {
    ObjectClassPart object_class;
    XmExtClassPart ext_class;
    XmIconGCacheObjClassPart icon_class_cache;
} XmIconGCacheObjClassRec;

extern XmIconGCacheObjClassRec xmIconGCacheObjClassRec;

typedef struct _XmIconGCacheObjPart {
    XmRenderTable    render_table;
    GC            selected_gc;
    GC            inverse_gc;
    Pixel        background;
    Pixel        foreground;
    Pixel        top_shadow_color;
    Pixel        bottom_shadow_color;
    Pixel        highlight_color;
    Pixmap        background_pixmap;
    Pixmap        top_shadow_pixmap;
    Pixmap        bottom_shadow_pixmap;
    Pixmap        highlight_pixmap;
    GC            normal_gc;
    GC            background_gc;
    GC            insensitive_gc;
    GC            top_shadow_gc;
    GC            bottom_shadow_gc;
    GC            highlight_gc;
    unsigned char    alignment;
    Dimension        spacing;
    Dimension        margin_width;
    Dimension        margin_height;
} XmIconGCacheObjPart;

typedef struct _XmIconGCacheObjRec {
    ObjectPart object;
    XmExtPart ext;
    XmIconGCacheObjPart icon_cache;
} XmIconGCacheObjRec;

typedef Widget (*XmGetContainerParentProc)(Widget);

/*
 * icon gadget class and instance records
 */
/* Define class part structure */
typedef struct {
    XmGetContainerParentProc get_container_parent;
    XtPointer extension;
} XmIconGadgetClassPart;

/* Define the full class record */
typedef struct _XmIconGadgetClassRec {
    RectObjClassPart rect_class;
    XmGadgetClassPart gadget_class;
    XmIconGadgetClassPart icong_class;
} XmIconGadgetClassRec;

extern XmIconGadgetClassRec xmIconGadgetClassRec;

typedef struct _XmIconGadgetPart {
    XmString label_string;
    Pixmap large_icon_mask;
    Pixmap large_icon_pixmap;
    Pixmap small_icon_mask;
    Pixmap small_icon_pixmap;
    unsigned char view_type;
    unsigned char visual_emphasis;
    XmStringTable detail;
    Cardinal detail_count;
    Dimension label_rect_width;
    Dimension label_rect_height;
    Dimension large_icon_rect_width;
    Dimension large_icon_rect_height;
    Dimension small_icon_rect_width;
    Dimension small_icon_rect_height;
    String large_pixmap_name;
    String small_pixmap_name;
    XmIconGCacheObjPart *cache;
} XmIconGadgetPart;

/* Define the full instance record */
typedef struct _XmIconGadgetRec {
    ObjectPart object;
    RectObjPart rectangle;
    XmGadgetPart gadget;
    XmIconGadgetPart icong;
} XmIconGadgetRec;


#define IG_VisualEmphasis(w)    (((XmIconGadget)(w))->icong.visual_emphasis)
#define IG_DetailCount(w)    (((XmIconGadget)(w))->icong.detail_count)
#define IG_ViewType(w)        (((XmIconGadget)(w))->icong.view_type)
#define IG_LabelString(w)    (((XmIconGadget)(w))->icong.label_string)
#define IG_NormalGC(w)        (((XmIconGadget)(w))->icong.cache->normal_gc)
#define IG_SelectedGC(w)    (((XmIconGadget)(w))->icong.cache->selected_gc)
#define IG_BackgroundGC(w)    (((XmIconGadget)(w))->icong.cache->background_gc)
#define IG_Cache(w)        (((XmIconGadget)(w))->icong.cache)
#define IG_ClassCachePart(w)    (((XmIconGadgetClass)xmIconGadgetClass)->gadget_class.cache_part)
#define IG_LargeIconMask(w)    (((XmIconGadget)(w))->icong.large_icon_mask)
#define IG_LargeIconPixmap(w)    (((XmIconGadget)(w))->icong.large_icon_pixmap)
#define IG_SmallIconMask(w)    (((XmIconGadget)(w))->icong.small_icon_mask)
#define IG_SmallIconPixmap(w)    (((XmIconGadget)(w))->icong.small_icon_pixmap)
#define IG_RenderTable(w)    (((XmIconGadget)(w))->icong.cache->render_table)
#define IG_Alignment(w)        (((XmIconGadget)(w))->icong.cache->alignment)
#define IG_Spacing(w)        (((XmIconGadget)(w))->icong.cache->spacing)
#define IG_MarginHeight(w)    (((XmIconGadget)(w))->icong.cache->margin_height)
#define IG_MarginWidth(w)    (((XmIconGadget)(w))->icong.cache->margin_width)

/* weird Motif backwards compatibility function.  I don't care if it ever
 * gets implemented or not */
extern void _XmClearBGCompatibility(Widget pbg);

#ifdef __cplusplus
}
#endif

#endif /* _XM_ICONGP_H */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0043 ]--