Español
Fuente/ Codesnippets

Farbpalette Farbwahldialog

 

Michael
Wodrich
Yo habe el Farbwahldialog a Anzeige el zurückgegebenen Farbpalette erweitert.
Ist me largo Tiempo no aufgefallen, daß a a 16 Farben al Stück geliefert voluntad...
Der Farbauswahldialog (en el Profano-Ayuda beschrieben)
en el Anzeige el Farbpalette erweitert.
 $P*
 $I C:PROFANLIBBILDBUTTON.INC (Für Bildbuttons/Iconbuttons)
 $I C:PROFANLIBSKCONTROL.INC (Für SKCONTROL.DLL)
 $H C:ProfanIncludeStructs.ph
Def @ChooseColor(1) !"COMDLG32.DLL", "ChooseColorA"
DEF GETSYSCOLOR(1) !"USER32","GetSysColor"
DEF GETWINDOW(2) !"USER32","GetWindow"
Conjunto("ErrorLevel",0)
Conjunto("TrueColor",1)
Conjunto("Decimals",0)

Proc HexStr

    Parámetros d&
    Declarar h$
    h$ = Hex$(d&)
    Volver "$" + MkStr$("0",6-Len(h$)) + h$

ENDPROC

PROC ShowPalette

    Parámetros ausgewaehlt&
    DECLARE DLG&, DIALOGENDE%
    DECLARE SKCONTROL&,STRING#,SKIMAGE#,SKIMAGE2#,SKIMAGE3#,FONT&
    DECLARE GW_CHILD&
    LET GW_CHILD& = 5
    LET SKCONTROL& = USEDLL("C:PROFANLIBSKCONTROL.DLL")
    SKCTRL_INITDLL()
    DIM STRING#,500
    DIM SKIMAGE#,500
    DIM SKIMAGE2#,500
    DIM SKIMAGE3#,500
    LET FONT& = @CREATE("FONT","MS SANS SERIF",13,0,0,0,0)
    DECLARE GROUPBOX1&, GROUPBOX2&, addi&, IconDatei$, ICONBUTTON1&
    DECLARE T1a&[8], T1b&[8], T2a&[7], T2b&[7],SKC&[16]
    addi& = 190
    DLG& = CREATE("DIÁLOGO",%HWND,"Folgende Farben fueron gewählt",22,20,383,424)
    USEFONT "MS Sans Serif",13,0,0,0,0
    SETDIALOGFONT 1
    GROUPBOX1& = @CREATE("GROUPBOX",DLG&,"",0000,0000,0186,0330)

    WhileLoop 0, 7

        T1a&[&bucle] = @CREATE("TEXT",DLG&,"Farbe "+Str$(&bucle)+":",11,11+(&bucle*40),50,20)

    EndWhile

    WhileLoop 0, 7

        cadena cadena#,0 = Str$(&bucle)
        LET SKC&[&bucle] = SKCTRL_CREATECOLORBUTTON(DLG&,cadena#,RGB(255,255,0),RGB(0,0,255),71,11+(&bucle*40),29,30,%hInstance)
        SETFONT SKC&[&bucle],FONT& : SKCTRL_SETCOLOR(SKC&[&bucle],1,0) : SKCTRL_SETCOLOR(SKC&[&bucle],2,UDC&[&bucle])

    EndWhile

    WhileLoop 0, 7

        T1b&[&bucle] = @CREATE("TEXT",DLG&,HexStr(UDC&[&bucle]),111,21+(&bucle*40),60,20)

    EndWhile

    GROUPBOX2& = @CREATE("GROUPBOX",DLG&,"",0000+addi&,0000,0186,0330)

    WhileLoop 0, 7

        T2a&[&bucle] = @CREATE("TEXT",DLG&,"Farbe "+Str$(&bucle+8)+":",11+addi&,11+(&bucle*40),50,20)

    EndWhile

    WhileLoop 0, 7

        cadena cadena#,0 = Str$(&bucle+8)
        LET SKC&[&bucle+8] = SKCTRL_CREATECOLORBUTTON(DLG&,cadena#,RGB(255,255,0),RGB(0,0,255),71+addi&,11+(&bucle*40),29,30,%hInstance)
        SETFONT SKC&[&bucle+8],FONT& : SKCTRL_SETCOLOR(SKC&[&bucle+8],1,0) : SKCTRL_SETCOLOR(SKC&[&bucle+8],2,UDC&[&bucle+8])

    EndWhile

    WhileLoop 0, 7

        T2b&[&bucle] = @CREATE("TEXT",DLG&,HexStr(UDC&[&bucle+8]),111+addi&,21+(&bucle*40),60,20)

    EndWhile

    ausgewaehlt&
    T1a&[8] = @CREATE("TEXT",DLG&,"letzte Auswahl:",11,340,80,15)
    cadena cadena#,0 = ":-)"
    LET SKC&[16] = SKCTRL_CREATECOLORBUTTON(DLG&,cadena#,RGB(255,255,0),RGB(0,0,255),90,349,29,30,%hInstance)
    SETFONT SKC&[16],FONT& : SKCTRL_SETCOLOR(SKC&[16],1,0) : SKCTRL_SETCOLOR(SKC&[16],2,ausgewaehlt&)
    T1b&[8] = @CREATE("TEXT",DLG&,HexStr(ausgewaehlt&),11,360,60,20)
    IconDatei$ = @FileSearch$("mspaint.exe", @GetEnv$("PATH"))
    ICONBUTTON "0",IconDatei$,DLG&,0170,0349,0040,0040
    LET ICONBUTTON1& = @&(0)
    SETFOCUS(DLG&)
    REPAINT
    LET DIALOGENDE% = 0

    WHILENOT DIALOGENDE%

        WAITINPUT

        If @EQU(%KEY,2) Or GETFOCUS(ICONBUTTON1&)

            LET DIALOGENDE%= 1

        ENDIF

    ENDWHILE

    @DESTROYWINDOW(DLG&)
    DISPOSE STRING#
    DISPOSE SKIMAGE#
    DISPOSE SKIMAGE2#
    DISPOSE SKIMAGE3#
    SKCTRL_DEINITDLL()
    FREEDLL SKCONTROL&
    DELETEOBJECT FONT&

ENDPROC

Conjunto("AutoPaint",2)
Ventana se para UseFont benötigt
Título de la ventana "Farbpalette"
Ventana de Estilo 112
Ventana 0,0 - 0,0
-StructuresDefinition------------------------------------------------
Declarar CHOOSECOLOR#
Struct TCHOOSECOLOR = ~CHOOSECOLOR
Dim CHOOSECOLOR#, TCHOOSECOLOR
-ConstantsDefinition-------------------------------------------------
Def &CC_ANYCOLOR $100
Def &CC_ENABLEHOOK $10
Def &CC_ENABLETEMPLATE $20
Def &CC_ENABLETEMPLATEHANDLE $40
Def &CC_FULLOPEN $2
Def &CC_PREVENTFULLOPEN $4
Def &CC_RGBINIT $1
Def &CC_SHOWHELP $8
Def &CC_SOLIDCOLOR $80
-VariablesDefinition-------------------------------------------------
Declarar UDC&[15]
Declarar Res$
-Main----------------------------------------------------------------
-Define UserColors-------------------------------------------------
UDC&[0] = @RGB(255, 127, 255)
UDC&[1] = @RGB(255, 127, 127)
UDC&[2] = @RGB(127, 127, 127)
-------------------------------------------------------------------

With CHOOSECOLOR#

    .lStructSize& = @SizeOf(CHOOSECOLOR#)
    .hwndOwner& = 0
    .hInstance& = 0
    .rgbResult& = @RGB(0, 255, 0)
    .lpCustColors& = @Addr(UDC&[0])
    .Flags& = &CC_FULLOPEN | &CC_ANYCOLOR | &CC_RGBINIT

EndWith

If @ChooseColor(CHOOSECOLOR#)

    Res$ = @Str$(CHOOSECOLOR#.rgbResult&) + "
    "
    Res$ = Res$ + "Rotanteil: " +
    @Str$(@GetRValue(CHOOSECOLOR#.rgbResult&)) + "
    "
    Res$ = Res$ + "Grünanteil: " +
    @Str$(@GetGValue(CHOOSECOLOR#.rgbResult&)) + "
    "
    Res$ = Res$ + "Blauanteil: " +
    @Str$(@GetBValue(CHOOSECOLOR#.rgbResult&))
    @MessageBox(Res$, "Gewählte Farbe", 64)
    ShowPalette CHOOSECOLOR#.rgbResult&

EndIf

Disponer CHOOSECOLOR#
-End-------------------------------------------------------------------
End

Schöne Grüße
Michael Wodrich

13 kB
Kurzbeschreibung: abgeknipst
Hochgeladen:16.06.2006
Ladeanzahl245
Descargar
 
Programmieren, das spannendste Detektivspiel der Welt.
16.06.2006  
 



Zum Quelltext


Título del Tema, max. 100 Signo.
 

Systemprofile:

Kein Systemprofil creado. [anlegen]

XProfan:

 Contribución  Font  Smilies  ▼ 

Bitte registro en una Contribución a verfassen.
 

Tema opciones

3.527 Views

Untitledvor 0 min.
Jens-Arne Reumschüssel20.01.2024
RudiB.15.04.2022
Boroberto21.04.2016
Georg21.11.2015
Más...

Themeninformationen

Dieses Thema ha 1 subscriber:

Michael Wodrich (1x)


Admins  |  AGB  |  Applications  |  Autores  |  Chat  |  Política de Privacidad  |  Descargar  |  Entrance  |  Ayuda  |  Merchantportal  |  Pie de imprenta  |  Mart  |  Interfaces  |  SDK  |  Services  |  Juegos  |  Búsqueda  |  Support

Ein Projekt aller XProfan, el lo son!


Mi XProfan
Privado Noticias
Eigenes Ablageforum
Temas-Merkliste
Eigene Beiträge
Eigene Temas
Zwischenablage
Cancelar
 Deutsch English Français Español Italia
Traducciones

Política de Privacidad


Wir uso Cookies sólo como Session-Cookies wegen el technischen Notwendigkeit y en uns hay no Cookies de Drittanbietern.

Wenn du hier en unsere Webseite klickst oder navigierst, stimmst du unserer Erfassung de Informationen en unseren Cookies en XProfan.Net a.

Weitere Informationen a unseren Cookies y dazu, como du el Kontrolle darüber behältst, findest du en unserer nachfolgenden Datenschutzerklärung.


einverstandenDatenschutzerklärung
Yo möchte no Cookie