Git Product home page Git Product logo

jackdp / jppack Goto Github PK

View Code? Open in Web Editor NEW
140.0 140.0 36.0 14.48 MB

A collection of VCL/LCL components for Delphi/Lazarus - buttons, panels, LinkLabel, ProgressBar, ColorComboBox, ColorListBox, Timer and other

Home Page: http://www.pazera-software.com/dev/jppack-components/

Batchfile 0.54% Pascal 99.46%
button combobox delphi delphi-component delphi-components delphi-library delphi-xe lazarus lazarus-component lazarus-components lazarus-package lcl lcl-components panel pascal vcl vcl-components

jppack's Introduction

My GitHub stats Top Languages

jppack's People

Contributors

jackdp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jppack's Issues

please add to JPPack.dpk support for TurboPack-GetIt PngComponents directive

package JPPack;

{$R *.res}
{$R '..\DCR\JppBasicPanel.dcr'}
{$R '..\DCR\JppBasicSpeedButton.dcr'}
{$R '..\DCR\JppColorComboBox.dcr'}
{$R '..\DCR\JppColorListBox.dcr'}
{$R '..\DCR\JppFormIniStorage.dcr'}
{$R '..\DCR\JppLinkLabel.dcr'}
{$R '..\DCR\JppPanel.dcr'}
{$R '..\DCR\JppTimer.dcr'}
{$R '..\DCR\JppColorSwatch.dcr'}
{$R '..\DCR\JppColorSwatchEx.dcr'}
{$R '..\DCR\JppSimplePanel.dcr'}
{$R '..\DCR\JppEdit.dcr'}
{$R '..\DCR\JppEditEx.dcr'}
{$R '..\DCR\JppMemo.dcr'}
{$R '..\DCR\JppMemoEx.dcr'}
{$R '..\DCR\JppPngCollection.dcr'}
{$R '..\DCR\JppComboBox.dcr'}
{$R '..\DCR\JppFlatComboBox.dcr'}
{$R '..\DCR\JppComboBoxEx.dcr'}
{$R '..\DCR\JppStdPanel.dcr'}
{$R '..\DCR\JppDoubleLabel.dcr'}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS OFF}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO OFF}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE RELEASE}
{$ENDIF IMPLICITBUILDING}
{$DESCRIPTION 'JPPack VCL Components'}
{$LIBSUFFIX 'Alexandria'}
{$IMPLICITBUILD ON}


{.$DEFINE USE_Getit_Or_TurboPack_PngComponents}  // Uncomment this line if you are using PngComponents from TurboPack or GetIt
{$DEFINE USE_GDIPLUS_CONTROLS}
{$IFDEF VER220}{$UNDEF USE_GDIPLUS_CONTROLS}{$ENDIF}
{$IFDEF VER210}{$UNDEF USE_GDIPLUS_CONTROLS}{$ENDIF}
{$IFDEF VER200}{$UNDEF USE_GDIPLUS_CONTROLS}{$ENDIF}

requires
  vcl,
  rtl,
  vclimg,
  JPLib,
  {$IFDEF USE_Getit_Or_TurboPack_PngComponents}
  PngComponentsD
  {$ELSE}
  PngComponents
  {$ENDIF}

  {$IFDEF USE_GDIPLUS_CONTROLS}, IGDIPlusMod {$ENDIF}
  ;

contains
  JPP.AnchoredControls in '..\..\source\JPP.AnchoredControls.pas',
  JPP.Helpers in '..\..\source\JPP.Helpers.pas',
  JPP.BasicPanel in '..\..\source\JPP.BasicPanel.pas',
  JPP.BasicPngButton in '..\..\source\JPP.BasicPngButton.pas',
  JPP.BasicPngButtonEx in '..\..\source\JPP.BasicPngButtonEx.pas',
  JPP.BasicSpeedButton in '..\..\source\JPP.BasicSpeedButton.pas',
  JPP.BrushStyleComboBox in '..\..\source\JPP.BrushStyleComboBox.pas',
  JPP.ColorComboBox in '..\..\source\JPP.ColorComboBox.pas',
  JPP.ColorControls.Common in '..\..\source\JPP.ColorControls.Common.pas',
  JPP.ColorListBox in '..\..\source\JPP.ColorListBox.pas',
  JPP.ColorSwatch in '..\..\source\JPP.ColorSwatch.pas',
  JPP.ComboBox in '..\..\source\JPP.ComboBox.pas',
  JPP.ComboBoxEx in '..\..\source\JPP.ComboBoxEx.pas',
  JPP.Common in '..\..\source\JPP.Common.pas',
  JPP.Common.Procs in '..\..\source\JPP.Common.Procs.pas',
  JPP.DoubleLabel in '..\..\source\JPP.DoubleLabel.pas',
  JPP.DoubleLineLabel in '..\..\source\JPP.DoubleLineLabel.pas',
  JPP.Edit in '..\..\source\JPP.Edit.pas',
  JPP.EditEx in '..\..\source\JPP.EditEx.pas',
  JPP.CheckBox in '..\..\source\JPP.CheckBox.pas',
  JPP.RadioButton in '..\..\source\JPP.RadioButton.pas',
  JPP.DateTimePicker in '..\..\source\JPP.DateTimePicker.pas',
  JPP.Flash in '..\..\source\JPP.Flash.pas',
  JPP.FormIniStorage in '..\..\source\JPP.FormIniStorage.pas',
  JPP.Gradient in '..\..\source\JPP.Gradient.pas',
  JPP.Graphics in '..\..\source\JPP.Graphics.pas',
  JPP.Labels in '..\..\source\JPP.Labels.pas',
  JPP.LinkLabel in '..\..\source\JPP.LinkLabel.pas',
  //JPP.MemIniFile in '..\..\source\JPP.MemIniFile.pas', replaced by JPL.MemIniFile from JPLib
  JPP.Memo in '..\..\source\JPP.Memo.pas',
  JPP.MemoEx in '..\..\source\JPP.MemoEx.pas',
  JPP.Panel in '..\..\source\JPP.Panel.pas',
  JPP.PenStyleComboBox in '..\..\source\JPP.PenStyleComboBox.pas',
  JPP.PngButton in '..\..\source\JPP.PngButton.pas',
  JPP.PngButton.ColorMaps in '..\..\source\JPP.PngButton.ColorMaps.pas',
  JPP.PngCollection in '..\..\source\JPP.PngCollection.pas',
  JPP.SimplePanel in '..\..\source\JPP.SimplePanel.pas',
  JPP.StdPanel in '..\..\source\JPP.StdPanel.pas',
  JPP.StorageCtrl in '..\..\source\JPP.StorageCtrl.pas',
  JPP.StringStorageCtrl in '..\..\source\JPP.StringStorageCtrl.pas',
  JPP.Timer in '..\..\source\JPP.Timer.pas',
  JPP.Types in '..\..\source\JPP.Types.pas',
  JPP.ProgressBar in '..\..\source\JPP.ProgressBar.pas',
  JPP.HtmlHint in '..\..\source\JPP.HtmlHint.pas',
  JPP.FlipPanel in '..\..\source\JPP.FlipPanel.pas',
  JPP.FlatComboBox in '..\..\source\JPP.FlatComboBox.pas',
  {$IFDEF USE_GDIPLUS_CONTROLS}
  JPP.GPHatchStyleComboBox in '..\..\source\JPP.GPHatchStyleComboBox.pas',
  {$ENDIF}
  LDPngFunctions in '..\..\source\LDPngFunctions.pas',
  JPP.Register in '..\..\source\JPP.Register.pas';

end.

Linux support

Does your library supports Delphi/FPC Linux platform?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.