Questions tagged [anjuta]

An IDE written for the GNOME project. Supports C, C++, Java, JavaScript, Python and Vala.

From the home page:

What is Anjuta DevStudio?

Anjuta DevStudio is a versatile software development studio featuring a number of advanced programming facilities including project management, application wizard, interactive debugger, source editor, version control, GUI designer, profiler and many more tools. It focuses on providing simple and usable user interface, yet powerful for efficient development.

43 questions
1
vote
5 answers

String to Date in C++ [Using Anjuta IDE]

I'm writing a program and I need to read date from file. In date is year, month and day. How I need to read all date information?? Can you give some examples??
gedO
  • 518
  • 2
  • 6
  • 23
1
vote
1 answer

Any plugin for c++ editor?

I am developing a standalone java desktop application. In that application I am giving user to create his own c++ file or modify the existing ones...But currently I am using Jtextarea as an editor for editing or creating c++ file. I actually want…
Antrromet
  • 14,318
  • 9
  • 56
  • 73
1
vote
1 answer

Anjuta/Glade Tutorials or Better IDE?

I am attempting to develop a GUI application for Tails. I'm doing the initial development on Debian 8 since development directly in Tails can be a pain. I started out using Anjuta, but the documentation is essentially non-existent. The Anjuta…
SteveB
  • 391
  • 1
  • 3
  • 13
1
vote
1 answer

How to change the color of calltips in Anjuta?

I use fedora 22, and dnf install -y anjuta. I create a new C++ project and write the following code: int hello(int a, int b); int main() { hello( // After I have typed '(', the calltips window popped up, // but the background color and…
xmllmx
  • 33,981
  • 13
  • 121
  • 269
1
vote
1 answer

Changing window title on button press does not work

I'm using anjuta with glade and gtk+. I'm trying to get the button in my app to change the window title: void changetitle(GtkWidget *win) { gtk_window_set_title(GTK_WINDOW(win),"My Window"); FILE *fh = fopen("/tmp/output.txt", "w"); …
Adel Ahmed
  • 518
  • 5
  • 23
1
vote
0 answers

gtkScale draws correctly in Glade, not in the final app

I have several GtkScale widgets in my program (about 10 of them), each has its own GtkAdjustment declared (and assigned). In Glade, these Scales are drawn correctly - complete with the 'knobs' to adjust. In the final application however, it seems…
jcoppens
  • 5,007
  • 6
  • 23
  • 38
1
vote
1 answer

How to import an existing Java project in the Anjuta IDE?

I have an existing Java project that I created using Eclipse on a different computer and uploaded to github. On my Fedora machine, I used Anjuta's github plugin to import the project and the import worked fine (I can see all my java files in the…
Bee Kay
  • 166
  • 7
1
vote
2 answers

OpenMP parallelization stopped working

On linux, AMD 8-core processor, using g++ 4 7.1. This is - for me - a headbanger. This following code was working perfectly, and for some reason stopped parallelizing. I added the omp_get_num_procs(), and it prints 8 processors. I checked the…
jcoppens
  • 5,007
  • 6
  • 23
  • 38
1
vote
3 answers

Why does printf output not appear right away when stepping through the code?

I'm using Anjuta and gdb on Fedora 20 and created a C Makefile project. The code looks like this: #include int main (void) { ° printf ("1"); ° printf ("2"); ° printf ("3"); return (0); } ° means I set a breakpoint at that…
0
votes
1 answer

What is the Anjuta project template (automake) *.wiz format (syntax)?

Apparently it's XML-like. Example templates can be found in the gnome Anjuta shares on an Ubuntu install at /usr/share/anjuta/project/ I think I'll go back to Eclipse and gedit if it doesn't look like Anjuta has documented a decent auto-completion,…
hobs
  • 15,252
  • 8
  • 75
  • 93
0
votes
1 answer

adding libxml library to project in Anjutha

How can i add libxml library in a project created with Anjutha.
boom
  • 5,194
  • 21
  • 52
  • 88
0
votes
1 answer

Embed images in Vala project for later use in UI

Context I'm new to Vala development (although I have some years of experience with C#) under Linux, and I decided to recreate one of my C# programs, however, I need to use images in the UI. My problem How can I embed resource files (such as images)…
Lonami
  • 3,178
  • 1
  • 15
  • 25
0
votes
1 answer

Cannot debug variable value in anjuta IDE using gdb

I'm trying to debug local variables values of a C++ project using Anjuta IDE, but all I'm getting is {...} instead of the actual values. See for example the next picture and what happens with the buf and buf1 variables (with all of them…
jotadepicas
  • 2,139
  • 2
  • 23
  • 44
0
votes
0 answers

Issue with loading Anjuta auto tools plugin

I am using Anjuta (built from source). I am facing an issue where the basic build autotools plugin is not started while starting Anjuta even if I try to enable in preferences (it gets disabled on startup) If I try to build a project that was already…
Harish
  • 41
  • 1
  • 5
0
votes
0 answers

Developing using Anjuta and Glade for GTK2

I am developing an app for a system that has GTK2 as the latest GTK library installed. I'm using Anjuta and Glade's wysiwyg design interface. I've used "project > add library" to add the library support for GTK2 and used the project tab on the left…
Adel Ahmed
  • 518
  • 5
  • 23