Programming :: Editing Font Size In Evolution Xml File?
Mar 29, 2010
I am trying to increase the font size in the evolution xml file to make the sub-menu easier to read (the menu with new, send/receive, reply, reply to all, forward) I found where the xml file is located but i can not seem to adjust the font. is there a different syntax for xml for changing font than html/css?
View 2 Replies
ADVERTISEMENT
May 17, 2011
The last time I got involved with printers and fonts, printers had tractors and ribbons and the only codes in use were ascii and ebcdic. So even if I could remember it would be out of date. I've written a C program that writes a text file. I want to print it. I run it through expand and send it to lp, but it comes out in an undesirable primitive font.
Once upon a time, one sent a string of commands to the printer telling it what font to use and what size, etc. I dont think this is done anymore, and if it is I dont remember how to do it. I assume programs embed in their output instructions in some common format which tell this stuff to the printer - in my case a HP1020. I've been looking on the search engines but I haven't found the magic words to find what I want. how to get my output formatted. If it involves some escape sequences in the file, maybe a pointer to a description of which does what?
View 2 Replies
View Related
Jul 14, 2010
I am writing a program in C to create a GUI application using GTK 2. My actual program is quite large, so I am using a modified version of the sample program from GNOME library for trial. I wish to increase the font size, and I have using PangoFontDescription. I have made that section of the code bold and italic below for quick reference to the code that affects fonts. But it does not make any difference. I am compiling the C file using gcc. The code is as follows(hello.c):
#include <gtk/gtk.h>
#include <glib.h>
#include <gdk/gdk.h>
[code]....
View 5 Replies
View Related
Feb 17, 2010
I am trying to scroll text from a text file across a wx.panel. This is the code so far:
Code:
def scrolling(self, text, rate):
def scroll(): charList = []
dc = wx.ClientDC(self.panel_1)
open_text = open(text, "rb")
my_text = open_text.read()
charList.append(my_text) open_text.close()
x,y = self.panel_1.GetClientSizeTuple()
while 1: for z in charList: for r in range(2000):
dc.DrawText(z,x-r,0) time.sleep(rate) dc.Clear()
net3 = threading.Thread(target=scroll)
net3.setDaemon(1) net3.start()
It scrolls but I am guessing where the range is (2000). I need to be able to determine the total number of pixels that the text in the file is. Is there a python way to determine this?
View 1 Replies
View Related
Jul 25, 2011
i have to upload a signature image(in jpeg format) to fill a recruitment form which says file-size must be of between 10-20 kb......i have scanned image which is of 9.5 kb.....tried to edit in shotwell photo manager....tried some random things in Adjust and crop menu but my little changes didn't work, it always shortened the file size......as i don't know anything about Image editing can someone tell me how can i increase the file size (>=10kb) i also tried gnome-screenshot to take the screenshot of the image, but it also saved the new image smaller than 10kb....
View 6 Replies
View Related
Feb 21, 2010
I changed the case of one letter ('N' to 'n') in a track name using Rhythmbox and the result is a file which is 7727 bytes smaller than the original (I saved a copy of the original file before editing the track name). The file is in ogg/vorbis format (160 Kb/s). I changed the track name back and the file size didn't change. However, the contents of the file are still drastically different (vastly more changed than merely the letter in the track name).I'm worried that Rhythmbox is doing something dreadful like decoding the file, changing the track name, and then completely re-encoding the file from scratch (meaning it runs the decoded audio through the lossy encoder to regenerate the file). Does anyone know whether or not Rhythmbox is doing this when the user edits the meta data (like the track name, artist, etc.)?
View 1 Replies
View Related
Aug 16, 2010
I can't change fonts in Firefox preferences (Content).
My OS is openSUSE 11.3, KDE 4.4.4. release 8.
Any type and size of font I use, nothing happens. It's still same font which I choose for the first time I've started Firefox afer installing openSUSE 11.3.
View 4 Replies
View Related
Jan 8, 2010
I want to make a program that edits music file ID3 tags, for example: overwrites all "artist" tags for a list of files with other one. I know some c++,python and shell scripting.
- how can I get just the metadata from a mp3 file? Mplayer shows file metadata before playback, but I could not find a switch for mplayer that displays just the data
- how can I edit the metadata?
- What libraries should I check out if I want to implement this with C++ or python?
- What about "custom" metadata tags? In the foobar2000 media player for m$ i could make my own metadata tags (like "record label"). How can these be edited & added?
View 2 Replies
View Related
Feb 19, 2011
I was wondering, what would be a good, open-source file format for a beginner in the field, like me, to start editing sound files? This file format would have to be well documented, preferibly open-source, lossless and, most of all, convertible to more popular file formats, such as mp3 or wav maybe. I would like to design my own sound effects through directly editing the binary sequence of a sound file. I imagine this editing would have the purpose of adjusting the voltage variations of the sound device's output in time. It would be perhaps something like a PC-controlled signal generator. I'm thinking I might be able to do this in linux with something like
Code:
$ dd if=mysound.raw of=/dev/audio
But then, which book or resource woule be a good and through explenation of the relationship between the bit sequence in mysound.raw and the signal function generated in the output of, say, my computer's sound card.
View 10 Replies
View Related
Dec 28, 2010
I want to read a file in C, but i dont know the size of the file. Is there any way to find the size of the file in C...?
View 2 Replies
View Related
Mar 25, 2010
script that will check if my log file is a certain size? EX: I want to limit the size of my rsync log to say 5MB, if that's true I would move it and create a new one.
View 4 Replies
View Related
Apr 3, 2010
Using bash, is it possible to get the average file size of each file in a directory of ~2000 files?
View 7 Replies
View Related
Jun 24, 2010
I have the following which works but think there must be a easier one-liner way of doing this which involves not writing to a file but have failed to find something that works This is what I have:
Code:
du -m $i > filesize.txt
FILESIZE=$`cat "filesize.txt" | cut -f1
rm filesize.txt
I then use the FILESIZE to compare to a number.
View 3 Replies
View Related
Feb 19, 2010
I have created a file with a pre-defined size as follows:
Code:
#define FILEPATH "testfile"
#define FILESIZE 16
[code]...
View 5 Replies
View Related
Jan 21, 2009
I have a file that's supposed to be growing in size 24/7. I want to check every 10 minutes via cron that it's actually growing. If not, send an email. Does anyone know how to write a script to do that?
View 3 Replies
View Related
Jun 22, 2011
Using getrlimit I am setting the core file size to be RLIM_INFINITY. But still the core file is not being generated,although in /var/log/messages it says a core is being generated
View 3 Replies
View Related
Nov 5, 2009
I'm a student in a linux class and we just installed fedora. so far it's nice except that the work we do is in the CLI which I can barely see because it's so small on the screen! I've been squinting at the screen for a little while now but it's just proving to give me more of a headache and hurt my eyes than anything. Anyone know how to change the font size so that I can actually see the work I'm doing?
View 5 Replies
View Related
Nov 16, 2009
I'm running OpenSUSE 11.2 on my Acer Aspire One with a 9 inch LCD. I have configured the monitor in Sax2 to reflect the size and 1024x600 resolution, and as a result the desktop fonts are all sized correctly.
However, the fonts on the KDM log-in screen are too large, and I'd like to reduce them if possible. Looking in the KDE Control Center, I tried using the Login Manager utility to adjust the KDM theme, but any changes I made seemed to have no effect i.e. changing the font size, or even the overall theme itself, still resulted in KDM using the default green OpenSUSE theme with large fonts.
Does anyone know, therefore, how to adjust the KDM font size or DPI in OpenSUSE 11.2?
View 9 Replies
View Related
Dec 9, 2010
I'm running OpenSuSE 11.3, upgraded from 11.1, with the Nvidia video driver. The font size for Yast, Firefox, and several other things is too small. I've tried changing it using the Appearance section of Personal Settings. That changes the font size in some contexts such as the window titles and task manager, but not in all contexts. In Firefox I've tried something similar, but it doesn't affect the font used in the tabs, function bar on the top, etc. The font in those parts of Firefox is the same as the one in Yast. So there's some other font setting around, but I haven't been able to find it. I've tried Google and SDB, but have no success searching there.
View 9 Replies
View Related
Mar 13, 2010
I need to print some pdf files. I use Kpdf and, Adobe Reader. Is there a way to check the font size of the file and to set the font size I want for printing?
View 1 Replies
View Related
Aug 1, 2010
No matter what I do with system settings I cannot change the font size or type of font in Firefox and Thunderbird - other programs as well. Is there somewhat to change this? The fonts are too small and I have vision problems. I know I can hit ctrol ++ but with other distros I can change the deflt font size for the system. I am using openSUSE 11.3 and like it very much except for this lack of a feature.
View 7 Replies
View Related
May 7, 2011
The check on the size of a file I perform in a tcsh script does not work. The size of my file is the following :
ls -l File.gpg
-rw-r--r-- 1 xuo users 3354637392 2011-05-07 15:31 File.gpg
The script is the following :
#!/bin/tcsh -f
set listOfEncryptFiles = `ls *.gpg`
foreach file ($listOfEncryptFiles)
set fileSize = `stat -c %s $file`
echo $fileSize
[Code]....
View 6 Replies
View Related
Feb 2, 2010
When I run xterm from the command line, there seems to be some errors:
Code:
$ xterm &
$ Warning: Cannot convert string "nil2" to type FontStruct
xterm: cannot load font -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso10646-1
Then I press both the Ctrl and right mouse key, options are popup with font sizes of 'Default',
[Code]....
View 2 Replies
View Related
Mar 30, 2010
How do I increase my font size in xdialog?
View 4 Replies
View Related
Jul 3, 2011
I am running openSUSE 11.4 KDE 64bit. I found the default font in YAST, for example, in Bootloader and Software Management, is about 8-9 points which is too small to read. Why on earth does openSUSE set a tiny font size as default?
I did try Configure Desktop >Application Appearance, etc. as well as qtconfig in the terminal but these seem not to increase the font size to 12-14 points.
View 3 Replies
View Related
Feb 27, 2010
I'm running Hardy 8.04.. Once in a while when I boot up my system, all of my fonts are different - everything is very large. If I go into the screen resolution, I have no choices higher than 800x600. If I restart the system, there is a good chance that the screen resolution will go back to normal. what I can do to fix it?
View 1 Replies
View Related
Jun 5, 2010
The font size on Chromium for the URL and tabs is *far* too small. I went into the "Under the Hood" settings, but to no avail. How can I make this bigger? [URL] Also, the bookmarks bar seem to be inheriting system fonts, but it looks like that size is hard coded too. I love chromium but I need some accessibility here.
View 6 Replies
View Related
Jul 18, 2010
where can I change the font size in Opera?
View 1 Replies
View Related
Aug 28, 2010
I cant Increase font size In Pidgin
View 1 Replies
View Related
Sep 16, 2010
i was using eclipse in windows 7, th fonts are small so I can see the code good. But I want to use in Ubuntu so I setup. But here the font size is huge and windows are taking more space and I am unable to code.How to reduce the overall font size and make it small?
View 4 Replies
View Related