Author Topic: Suggestion : Related To GUI And code Editor  (Read 5633 times)

Offline bijanbina

  • Single posting newcomer
  • *
  • Posts: 5
Suggestion : Related To GUI And code Editor
« on: August 14, 2011, 04:02:11 pm »
Hi
I want feature that most of IDE like qt editor provide but code block not!
i want code block highlight type for example in this code
Code
int main(int argc, char** argv)
{
   myClass Test;
  
   class2 c1;

   return 0;
}

myClass and class2 are a type but Code block can't detect it!

and also i want to set the line number forecolor and background color
« Last Edit: August 14, 2011, 05:20:00 pm by bijanbina »

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9723
Re: Suggestion : Related To GUI And code Editor
« Reply #1 on: August 14, 2011, 04:10:25 pm »
myClass and vector are a type but Code block can't detect it!
Which version / platform are you using? This works just fine (for at least vector) since ages.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline bijanbina

  • Single posting newcomer
  • *
  • Posts: 5
Re: Suggestion : Related To GUI And code Editor
« Reply #2 on: August 14, 2011, 05:17:05 pm »
I use ubuntu (linux) , Code::Block 10.05

are you sure?

for example if you create a new class and then create a variable with that data type it's highlight??????????

ok i check it! yes it just highlight vector but not support new data type
« Last Edit: August 14, 2011, 05:18:56 pm by bijanbina »