Skip to content

Commit

Permalink
Init Linkbar repository
Browse files Browse the repository at this point in the history
  • Loading branch information
ATGH15102AFMLD committed Feb 18, 2017
0 parents commit 3253456
Show file tree
Hide file tree
Showing 21 changed files with 7,180 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Uncomment these types if you want even more clean repository. But be careful.
# It can make harm to an existing project source. Read explanations below.
#
# Resource files are binaries containing manifest, project icon and version info.
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
#*.res
#
# Type library file (binary). In old Delphi versions it should be stored.
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
#*.tlb
#
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
# Uncomment this if you are not using diagrams or use newer Delphi version.
#*.ddp
#
# Visual LiveBindings file. Added in Delphi XE2.
# Uncomment this if you are not using LiveBindings Designer.
#*.vlb
#
# Deployment Manager configuration file for your project. Added in Delphi XE2.
# Uncomment this if it is not mobile development and you do not use remote debug feature.
#*.deployproj
#
# C++ object files produced when C/C++ Output file generation is configured.
# Uncomment this if you are not using external objects (zlib library for example).
#*.obj
#

# Delphi compiler-generated binaries (safe to delete)
*.exe
*.dll
*.bpl
*.bpi
*.dcp
*.so
*.apk
*.drc
*.map
*.dres
*.rsm
*.tds
*.dcu
*.lib
*.a
*.o
*.ocx

# Delphi autogenerated files (duplicated info)
*.cfg
*.hpp
*Resource.rc

# Delphi local files (user-specific info)
*.local
*.identcache
*.projdata
*.tvsconfig
*.dsk

# Delphi history and backups
__history/
__recovery/
*.~*

# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
*.stat

# Linkbar profile
*.lbr
23 changes: 23 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
=============================================================================
License for the Linkbar Source Code (MIT license)

Copyright (c) 2010-2017 Asaq
https://sourceforge.net/projects/linkbar/

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
106 changes: 106 additions & 0 deletions components/ColorPicker/ColorPicker.dfm
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
object frmColorPicker: TfrmColorPicker
Left = 660
Top = 197
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Color'
ClientHeight = 243
ClientWidth = 201
Color = clBtnFace
ParentFont = True
FormStyle = fsStayOnTop
OldCreateOrder = False
Position = poOwnerFormCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
DesignSize = (
201
243)
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 29
Width = 205
Height = 174
BevelOuter = bvNone
ParentColor = True
TabOrder = 0
object imgColorBox: TImage
Left = 32
Top = 5
Width = 137
Height = 137
OnMouseDown = imgColorBoxMouseDown
OnMouseMove = imgColorBoxMouseMove
OnMouseUp = imgColorBoxMouseUp
end
object imgZBar: TImage
Left = 5
Top = 147
Width = 191
Height = 22
OnMouseDown = imgColorBarMouseDown
OnMouseMove = imgColorBarMouseMove
OnMouseUp = imgColorBarMouseUp
end
object imgColor: TImage
Left = 174
Top = 5
Width = 22
Height = 137
OnMouseDown = imgColorMouseDown
end
object imgAlpha: TImage
Left = 5
Top = 5
Width = 22
Height = 137
OnMouseDown = imgAlphaMouseDown
OnMouseMove = imgAlphaMouseMove
OnMouseUp = imgAlphaMouseUp
end
end
object editColor: TEdit
Tag = 3
Left = 32
Top = 5
Width = 137
Height = 21
Alignment = taCenter
CharCase = ecUpperCase
MaxLength = 8
TabOrder = 1
Text = 'FFFFFFFF'
OnKeyDown = editColor1KeyDown
OnKeyPress = editColor1KeyPress
OnKeyUp = editColor1KeyUp
end
object btnOk: TButton
Left = 8
Top = 210
Width = 89
Height = 25
Anchors = [akTop, akRight]
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 2
end
object btnCancel: TButton
Left = 103
Top = 210
Width = 90
Height = 25
Anchors = [akTop, akRight]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
object ilMain: TImageList
ColorDepth = cd32Bit
Left = 104
Top = 24
end
end
Loading

0 comments on commit 3253456

Please sign in to comment.