You can use Network Manager with a static IP address.
If you want a system-wide setting, you can use /etc/network/interfaces for a wireless adapter. The only difference with a wired adapter is that you'll need extra settings for the encryption (unless your wifi network is unencrypted).
For WPA (any supported variant), use wpa-supplicant
.
auto wlan0
iface wlan0 inet static
address 192.0.2.3
netmask 255.255.255.0
broadcast 192.0.2.255
gateway 192.0.2.1
dns-nameservers 192.0.2.2
wpa-ssid chez-jackson
wpa-psk swordfish
The wpa- parameters are those you could put in a block in wpa_supplicant.conf, with wpa- prefixed.
For WEP, the wireless-tools
package has all you need. Instead of the wpa- settings, put wireless- settings, e.g.
wireless-essid chez-jackson
wireless-key 0123456789abcdef