-
Notifications
You must be signed in to change notification settings - Fork 329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JvDBUltimGrid & JVDBGrid issue showing checkbox and glyps #158
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
German translation 1
…ated commits I created this single commit containing all the modifications of the German translation in one commit.
Initialize FShowStartEndTimeInHint (Mantis 6578)
NativeInt can be negative, better to test for different from zero (Mantis 6595)
Give IJvDynControlDblClick its own GUID (Mantis 6558)
LookupField should be searched case sensitively (Mantis 6620)
Updated German translation
Some kind of jpeg image does not has the "JFIF" or "Exif" signature at stream offset 6 as procedure GraphicSignaturesNeeded currently expected. According to JPEG standard (https://en.wikipedia.org/wiki/JPEG), JPEG File MUST begins with magic number FF D8. So we can register FF D8 as JPEG Signature to solve this problem.
Update for registering JPEG Graphics with signature FF D8
…there is a BOM at the beginning
…creating the component in code and setting min, max or position before the component had a chance to paint itsself led to a crash because FBitmap was not assigned.
Create bitmap before trying to draw a pointer.
…method it was suggested to only draw the pointer if a bitmap is already created otherwise the next call to Paint will draw it anyway. Checking this was necessary in further methods as well though.
More efficient fix for TJvDialButtonCrash
Changed suggested V2AB and AB2V to be compatible with D6-D2009 as well.
Added ShowCaption property for Delphi 6-2007
…ditor as found in http://docwiki.embarcadero.com/RADStudio/Rio/en/Fundamental_Syntactic_Elements_(Delphi) but not yet present in DelphiKeyWords constant.
…ple of small enhancements to JvMemoryDataset and XPButton" pull request #55
…ext and TJvXPCustomButton to support DT_HIDEPREFIX, DT_NOPREFIX, DT_PREFIXONLY when calling DrawText" commit splitting series of commits.
…, now as isolated commit
…ind the information somewhere else
… kind of installations
Link in the correct wininet library file when using the C++Builder 64-bit compiler.
Link in the correct wininet library file when using the C++Builder 64-bit compiler.
Update JvComputerInfoEx.pas
Update JvUrlGrabbers.pas
Update JvUrlListGrabber.pas
* Replace old JCL URL with GitHub URL
Please merge with the master instead of this 6 year old tag. |
Dear @fduron, you have created this pull request with the "JVCL3_49_PREPARATION" branch as the target. As @ronaldhoek indicated, this tag is very very old. |
Redone in #159 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I see a bug when I use checkbox and glyps on JvDBGrid or JvDBUltimGrid, as you can see in the picture bellow:
It seems like it is necessary to clean the cell before drawing the glyph, so I added a FillRect just before Drawing a transparent bitmap at line 3843 of JvDBGrid.pas
After adding this FillRect, the JvDBUltimGrid shows checkboxes correctlly