IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C# Discussion :

Scintillement lors de surcharge de fonction WndProc


Sujet :

C#

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre extrêmement actif
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    929
    Détails du profil
    Informations personnelles :
    Localisation : France, Vienne (Poitou Charente)

    Informations forums :
    Inscription : Mai 2011
    Messages : 929
    Par défaut Scintillement lors de surcharge de fonction WndProc
    Bonjour,
    Pour le logiciel Revit , j'ai essayer pour pouvoir afficher des glyphs,bitmap ,de surcharger la méthode Windowproc de la
    boite de dialogue Revit,
    je surcharge le message WM_PAINT,WM_MOUSEMOVE.
    Ca marche , mais quand un élément de Revit passe en subrillance, ou ligne d'accroche s'affiche , les glyphs scintillent et je ne sais pas comment faire pour éviter le scintillement.
    Pourquoi ne pas passer par l'API de Revit ?
    Car il n'existe pas de fonction pour faire ce genre de chose.
    Donc comment faire ?
    Merci.


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
     
     
     
     
     
    	 struct SearchData
            {
                public string WindowText;
                public IntPtr ParentHandle;
                public IntPtr ResultHandle;
            }
     
            delegate bool EnumWindowsCallback(IntPtr currentWindowHandle, ref SearchData searchData);
    	[DllImport("user32.dll")]
            internal static extern IntPtr GetActiveWindow();
     
            [DllImport("user32")]
            private static extern IntPtr SetWindowLongPtr(IntPtr hwnd, int index,
                                                  IntPtr wndProc);
     
            [DllImport("user32")]
            private static extern IntPtr GetWindowLongPtr(IntPtr hwnd, int index);
     
            [DllImport("User32.dll", CharSet = CharSet.Auto)]
            private static extern IntPtr CallWindowProc(IntPtr wndProc, IntPtr hwnd, int msg,
                                                     IntPtr wparam, IntPtr lparam);
     
            [DllImport("user32.dll")]
            static extern IntPtr BeginPaint(IntPtr hwnd, out PAINTSTRUCT lpPaint);
     
            [DllImport("user32.dll")]
            static extern bool EndPaint(IntPtr hWnd, [In] ref PAINTSTRUCT lpPaint);
     
            [DllImport("user32.dll")]
            static extern bool GetClientRect(IntPtr hWnd, out RECT lpRect);
     
            [DllImport("user32.dll")]       
            static extern IntPtr GetDC(IntPtr hWnd);
            [DllImport("user32.dll")]
            static extern bool ReleaseDC(IntPtr hWnd, IntPtr hDC);
     
            [DllImport("gdi32.dll", EntryPoint = "CreateCompatibleDC", SetLastError = true)]
            static extern IntPtr CreateCompatibleDC([In] IntPtr hdc);
     
            [DllImport("gdi32.dll", EntryPoint = "DeleteDC")]
            public static extern bool DeleteDC([In] IntPtr hdc);
            [DllImport("user32.dll")] 
            static extern bool ValidateRect(IntPtr hWnd, ref RECT lpRect);
     
    	 [DllImport("user32.dll")] static extern bool EnumChildWindows(IntPtr handle,EnumWindowsCallback callback, ref SearchData searchData);
     
            [DllImport("user32.dll")] static extern IntPtr GetParent(IntPtr childHandle);
     
            [DllImport("user32.dll")] static extern void GetWindowText(IntPtr handle, StringBuilder resultWindowText, int maxTextCapacity);
     
            [DllImport("user32.dll")] static extern void GetClassName(IntPtr handle, StringBuilder resultWindowText, int maxTextCapacity);
     
     
    	 static bool Callback(IntPtr currentWindowHandle, ref SearchData searchData)
            {
                bool continueEnumeration = true;
     
                //IntPtr currentWindowParentHandle = GetParent(currentWindowHandle);
     
                //if (currentWindowParentHandle == searchData.ParentHandle)
                {
                    var windowText = new StringBuilder(1024);
                    GetClassName(currentWindowHandle, windowText, windowText.Capacity);
     
                    //if (windowText.ToString() == searchData.WindowText)
                    if (windowText.ToString().ToUpper().Contains(searchData.WindowText.ToUpper()))
                    {
                        searchData.ResultHandle = currentWindowHandle;
                        continueEnumeration = false;
                    }
                }
     
                return continueEnumeration;
            }
     
     
            IntPtr GetChildWindowHandle(string windowText, IntPtr parentHandle)
            {
                var searchData = new SearchData { ParentHandle = parentHandle, WindowText = windowText };
     
                EnumChildWindows(parentHandle,Callback, ref searchData);
     
                return searchData.ResultHandle;
            }
     
    	        private delegate IntPtr WndProcPointer(IntPtr hwnd, int msg,
                                        IntPtr wparam, IntPtr lparam);
     
            static IntPtr oldwndproc = IntPtr.Zero;
            static WndProcPointer wa;
     
     
     
    		 protected virtual IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wparam, IntPtr lparam)
            {
                IntPtr ret;
    			if (msg==0xf) //WM_PAINT
                {
                    ret = tdxtt(hwnd, msg, wparam, lparam);
                }
                else
                if ((msg == 0x200)) //WM_MOUSEMOVE
                {
                    bool ta = true;
                    int iwparam = wparam.ToInt32();
                    if ((iwparam & 0x10) == 0x10) //mbutton
                        ta = false;
                    ret = tdxtt(hwnd, msg, wparam, lparam,ta);
                }
                else
                if ( (msg == 0xa0) || (msg == 0x20) || (msg == 0x46) || (msg == 0x22)|| (msg == 0x07) || (msg == 0x08)) 
                {
                    ret = tdxtt(hwnd, msg, wparam, lparam);
                }
                else
    			 ret = CallWindowProc(oldwndproc, hwnd, msg, wparam, lparam);
                return ret;
     
    			}
     
    			 private IntPtr tdxtt(IntPtr hwnd, int msg, IntPtr wparam, IntPtr lparam,bool traceit=true)
            {
                IntPtr ret;
                if (traceit == false)
                {
                    ret = CallWindowProc(oldwndproc, hwnd, msg, wparam, lparam);
                }
                else
                {
                    Graphics g = Graphics.FromHwndInternal(hwnd);
                    GetClientRect(hwnd, out var nrc);
     
                    var rect = new System.Drawing.Rectangle(nrc.Left, nrc.Top, nrc.Width, nrc.Height);
                    if (bmp != null)
                        bmp.Dispose();
     
                    {
                        bmp = new Bitmap(rect.Width, rect.Height);
                        var grbmp = Graphics.FromImage(bmp);
     
                        trptest(grbmp);
                        grbmp.Dispose();
                    }
     
                    ret = CallWindowProc(oldwndproc, hwnd, msg, wparam, lparam);
     
     
                    g.DrawImage(bmp, 0, 0);
                }
     
                return ret;
            }
     
    	 public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
            {
     
                var uidoc = commandData.Application.ActiveUIDocument;
     
     
                // commandData.Application.Idling += gcbar;
     
                if (oldwndproc == IntPtr.Zero)
                {
     
                    var ig = GetActiveWindow();
     
     
     
     
                    IntPtr hp = GetChildWindowHandle("AfxFrameOrView", ig);
     
     
                    wa = new WndProcPointer(WndProc);
                    var intptrwa = Marshal.GetFunctionPointerForDelegate(wa);
                    oldwndproc = SetWindowLongPtr(hp, GWL_WNDPROC, intptrwa);
                    var sel = uidoc.Selection;
                    try
                    {
                        var oo = sel.PickPoint();
                    }
                    finally
                    {
                        SetWindowLongPtr(hp, GWL_WNDPROC, oldwndproc);
                        oldwndproc = IntPtr.Zero;
                    }
                }
    			return Result.Succeeded;
    			}

  2. #2
    Membre Expert
    Profil pro
    Inscrit en
    Septembre 2010
    Messages
    1 595
    Détails du profil
    Informations personnelles :
    Âge : 46
    Localisation : France

    Informations forums :
    Inscription : Septembre 2010
    Messages : 1 595
    Par défaut
    Sauf erreur de ma part, les états de surbrillance (entre autres) sont passés à windproc via wparam/lparam, il faudrait ne pas les transmettre à tes glyphes

Discussions similaires

  1. API HOOK, Dump dll, Surcharge de Fonction
    Par MicroAlexx dans le forum Windows
    Réponses: 2
    Dernier message: 30/12/2005, 11h39
  2. [Image] scintillement lors déplacement sur autre composant
    Par lilou77 dans le forum Interfaces Graphiques en Java
    Réponses: 21
    Dernier message: 07/12/2005, 10h27
  3. [MFC] Surcharger des fonctions de CView
    Par Philippe320 dans le forum MFC
    Réponses: 2
    Dernier message: 22/11/2005, 22h24
  4. singleton, polymorphisme, et surcharge de fonction
    Par legend666 dans le forum C++
    Réponses: 11
    Dernier message: 14/11/2005, 10h27
  5. Surcharge de fonction d'un edit dynamique
    Par Tartar Ukid dans le forum C++Builder
    Réponses: 4
    Dernier message: 13/10/2003, 12h56

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo