Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Cropping - Custom Crop Guides
#3
I'd start by searching for the exact text of one of the guide options:
Code:
Searching for: Golden sections
app\display\display-enums.c(64): { GIMP_GUIDES_GOLDEN, NC_("guides-type", "Golden sections"), NULL },
app\display\display-enums.h(44): GIMP_GUIDES_GOLDEN,        /*< desc="Golden sections" >*/
Found 2 occurrence(s) in 2 file(s)

So then I'd search for GIMP_GUIDES_GOLDEN, which should find where the code is that implements drawing them:
Code:
Searching for: GIMP_GUIDES_GOLDEN
app\display\display-enums.c(51): { GIMP_GUIDES_GOLDEN, "GIMP_GUIDES_GOLDEN", "golden" },
app\display\display-enums.c(64): { GIMP_GUIDES_GOLDEN, NC_("guides-type", "Golden sections"), NULL },
app\display\display-enums.h(44): GIMP_GUIDES_GOLDEN,        /*< desc="Golden sections" >*/
app\display\gimpcanvasrectangleguides.c(311): case GIMP_GUIDES_GOLDEN:
app\display\gimpcanvastransformguides.c(419): case GIMP_GUIDES_GOLDEN:
Found 5 occurrence(s) in 4 file(s)

Then I'll leave it to you to get lost in the mass of code Wink
Reply


Messages In This Thread
Cropping - Custom Crop Guides - by SpiDeeWebb - 10-04-2017, 07:33 AM
RE: Cropping - Custom Crop Guides - by rich2005 - 10-04-2017, 08:08 AM
RE: Cropping - Custom Crop Guides - by Ofnuts - 10-04-2017, 08:42 PM
RE: Cropping - Custom Crop Guides - by Kevin - 10-04-2017, 08:11 AM
RE: Cropping - Custom Crop Guides - by Blighty - 10-04-2017, 08:12 AM
RE: Cropping - Custom Crop Guides - by rich2005 - 10-05-2017, 07:51 AM

Forum Jump: